8 lines
149 B
Text
8 lines
149 B
Text
funcs = []
|
|
repeat with i = 1 to 10
|
|
code = "res="&i&"*"&i
|
|
funcs[i] = script("CallFunction").new(code)
|
|
end repeat
|
|
|
|
put call(funcs[3], _movie)
|
|
-- 9
|