mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
94 B
Text
11 lines
94 B
Text
|
|
var x := 4;
|
|
|
|
function foo()
|
|
var x := 1;
|
|
|
|
print( x );
|
|
endfunction
|
|
|
|
print( x );
|
|
foo();
|