RosettaCodeData/Task/Conditional-structures/Arturo/conditional-structures-5.arturo
2026-04-30 12:34:36 -04:00

7 lines
117 B
Text

x: 2
case x [
1 -> print "x is one!"
2 -> print "x is two!"
any -> print "x is none of the above"
]