mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
138 B
Text
10 lines
138 B
Text
for i := 1 to 5
|
|
var b := 2*i;
|
|
print(b);
|
|
if (i == 3)
|
|
continue;
|
|
endif
|
|
var c;
|
|
c := 2;
|
|
print(c+b);
|
|
endfor
|