mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
16 lines
184 B
Text
16 lines
184 B
Text
var a;
|
|
|
|
function foo()
|
|
foreach c in a
|
|
var x;
|
|
endforeach
|
|
if (a)
|
|
// var d;
|
|
endif
|
|
var e;
|
|
while(1)
|
|
e := a;
|
|
endwhile
|
|
endfunction
|
|
|
|
foo();
|