mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-08 11:38:01 +03:00
11 lines
328 B
Text
11 lines
328 B
Text
![]() |
main:
|
||
|
local.script_file = "path_to/linked_private_script2.txt"
|
||
|
|
||
|
thread local.script_file::public_label 1 2 3
|
||
|
|
||
|
println( "Creating thread to private label" );
|
||
|
thread local.script_file::private_label 5
|
||
|
|
||
|
println( "Creating thread to script2 that will call private label" );
|
||
|
thread local.script_file::private_label_caller 5
|
||
|
end
|