mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
77 B
Text
10 lines
77 B
Text
var a;
|
|
|
|
foo();
|
|
|
|
var b;
|
|
|
|
function foo()
|
|
print(b);
|
|
b := 5;
|
|
endfunction
|