RosettaCodeData/Task/Conditional-structures/Ol/conditional-structures-1.ol

6 lines
131 B
Text
Raw Permalink Normal View History

2023-07-18 13:51:12 -07:00
(if (= (* 2 2) 4)
(print "if-then: equal"))
(if (= (* 2 2) 6)
(print "if-then: should not be printed"))
2023-07-01 11:58:00 -04:00
; ==> if-then: equal