11 lines
160 B
Common Lisp
11 lines
160 B
Common Lisp
(
|
|
(print (lt 3 4))
|
|
|
|
(print (and 1 2 true 4))
|
|
|
|
(print (and 1 false 2))
|
|
|
|
(print (or false false 2 false))
|
|
|
|
(if (gt 1 2) (print "ok") (print "not ok"))
|
|
) |