16 lines
205 B
Plaintext
Executable File
16 lines
205 B
Plaintext
Executable File
//loads an external file
|
|
dofile("utils\\coMmons.nut");
|
|
|
|
//declares some locals
|
|
local x=10;
|
|
local y="asd"
|
|
local testy=function(){return 0;}
|
|
|
|
|
|
while(1)
|
|
{
|
|
local ret;
|
|
ret = TestFunc("param 1","param 2");
|
|
}
|
|
|