RosettaCodeData/Task/Conditional-structures/Nanoquery/conditional-structures.nanoquery
2023-07-01 13:44:08 -04:00

9 lines
86 B
Text

if x = 0
foo()
else if x = 1
bar()
else if x = 2
baz()
else
boz()
end