RosettaCodeData/Task/Conditional-structures/SIMPOL/conditional-structures-1.simpol

8 lines
64 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if x == 1
foo()
else if x == 2
bar()
else
foobar()
end if