RosettaCodeData/Task/Boolean-values/Logo/boolean-values-1.logo

5 lines
108 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
print 1 < 0 ; false
print 1 > 0 ; true
if "true [print "yes] ; yes
if not "false [print "no] ; no