5 lines
131 B
Text
5 lines
131 B
Text
(if (= (* 2 2) 4)
|
|
(print "if-then: equal"))
|
|
(if (= (* 2 2) 6)
|
|
(print "if-then: should not be printed"))
|
|
; ==> if-then: equal
|