RosettaCodeData/Task/Boolean-values/Logo/boolean-values-1.logo
2023-07-01 13:44:08 -04:00

4 lines
108 B
Text

print 1 < 0 ; false
print 1 > 0 ; true
if "true [print "yes] ; yes
if not "false [print "no] ; no