RosettaCodeData/Task/Conditional-structures/Nanoquery/conditional-structures.nanoquery

10 lines
86 B
Text
Raw Permalink Normal View History

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