mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
No EOL
112 B
Text
10 lines
No EOL
112 B
Text
const A := 4;
|
|
const B := 5;
|
|
|
|
var x := 7;
|
|
print(0);
|
|
if (x == 5)
|
|
print(1);
|
|
elseif (A == B)
|
|
print(2);
|
|
endif |