1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00

Test that (not nil) returns true

This commit is contained in:
Tim Morgan 2018-07-08 22:21:01 -05:00
parent 810ec74a67
commit e2352e739b

View File

@ -243,6 +243,8 @@ a
;; Testing language defined not function
(not false)
;=>true
(not nil)
;=>true
(not true)
;=>false
(not "a")