mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
9 lines
118 B
Text
9 lines
118 B
Text
|
|
var i := 4;
|
|
while (i)
|
|
i := i - 1;
|
|
if ( i == 2 )
|
|
continue;
|
|
endif
|
|
print( "i: " + i );
|
|
endwhile
|