1
0
Fork 0
lesson-lisp/tests/logic_ops.scm

12 lines
302 B
Scheme
Raw Normal View History

2023-05-06 20:58:11 +04:00
(begin
(displayln "--- TEST: not --------------------------------------------------")
(displayln (not '()))
(displayln (not #true))
(displayln (not #false))
;(displayln (not #\n))
(displayln (not 'foo))
(displayln (not "foo"))
(displayln (not 123))
(displayln (not (cons 123 456)))
)