mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
10 lines
91 B
Text
10 lines
91 B
Text
var a,b,c;
|
|
if (a)
|
|
b := 2;
|
|
elseif (b)
|
|
c := 3;
|
|
elseif (c)
|
|
a := 4;
|
|
endif
|
|
|
|
c := 2;
|