You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
205 B
15 lines
205 B
//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");
|
|
}
|
|
|