4 lines
113 B
Text
4 lines
113 B
Text
|
|
(if (= (* 2 2) 4) (print "if-then: equal"))
|
||
|
|
(if (= (* 2 2) 6) (print "if-then: non equal"))
|
||
|
|
; ==> if-then: equal
|