mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-23 04:44:13 +00:00
16 lines
205 B
Plaintext
16 lines
205 B
Plaintext
//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");
|
|
}
|
|
|