2023-07-18 13:51:12 -07:00
|
|
|
(if (= (* 2 2) 4)
|
|
|
|
|
(print "if-then-else: equal")
|
|
|
|
|
(print "if-then-else: non equal"))
|
2023-07-01 11:58:00 -04:00
|
|
|
; ==> if-then-else: equal
|
2023-07-18 13:51:12 -07:00
|
|
|
|
|
|
|
|
(if (= (* 2 2) 6)
|
|
|
|
|
(print "if-then-else: equal")
|
|
|
|
|
(print "if-then-else: non equal"))
|
|
|
|
|
; ==> if-then-else: non equal
|