9 lines
113 B
Common Lisp
9 lines
113 B
Common Lisp
(
|
|
(print (lt 3 4))
|
|
|
|
(print (and 1 2 true 4))
|
|
|
|
(print (and 1 false 2))
|
|
|
|
(print (or false false 2 false))
|
|
) |