mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
23 lines
248 B
Text
23 lines
248 B
Text
|
|
|
||
|
|
|
||
|
|
foo();
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
function bar01()
|
||
|
|
print( "bar01" );
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
function bar02()
|
||
|
|
print( "bar02" );
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
function bar()
|
||
|
|
bar01();
|
||
|
|
bar02();
|
||
|
|
endfunction
|
||
|
|
|
||
|
|
function foo( a := "foo", b := "blah" )
|
||
|
|
print( a + " " + b );
|
||
|
|
endfunction
|