mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
19 lines
104 B
Text
19 lines
104 B
Text
if 1 >= 0
|
|
a=0
|
|
else
|
|
a=1
|
|
end
|
|
|
|
if 1 >= 1
|
|
b=0
|
|
else
|
|
b=1
|
|
end
|
|
|
|
if 1 >= 2
|
|
c=1
|
|
else
|
|
c=0
|
|
end
|
|
|
|
d=a+b+c
|