RosettaCodeData/Task/Conditional-structures/Arturo/conditional-structures-5.arturo

8 lines
117 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
x: 2
case x [
1 -> print "x is one!"
2 -> print "x is two!"
any -> print "x is none of the above"
]