mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
11 lines
158 B
Text
11 lines
158 B
Text
|
|
// Scope02 - make sure locals go out of scope
|
||
|
|
// this should fail to compile.
|
||
|
|
|
||
|
|
if (1)
|
||
|
|
var a;
|
||
|
|
a := 5;
|
||
|
|
print( "A=" + a );
|
||
|
|
endif
|
||
|
|
|
||
|
|
print( "A=" + a );
|