RosettaCodeData/Task/Boolean-values/Arturo/boolean-values.arturo
2023-07-01 13:44:08 -04:00

7 lines
106 B
Text

a: true
b: false
if? a [ print "yep" ] else [ print "nope" ]
if? b -> print "nope"
else -> print "yep"