RosettaCodeData/Task/Boolean-values/Arturo/boolean-values.arturo
2026-02-01 16:33:20 -08:00

7 lines
109 B
Text

a: true
b: false
switch a [ print "yep" ][ print "nope" ]
switch b -> print "nope"
-> print "yep"