RosettaCodeData/Task/Boolean-values/Arturo/boolean-values.arturo

8 lines
106 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a: true
b: false
if? a [ print "yep" ] else [ print "nope" ]
if? b -> print "nope"
else -> print "yep"