1
1
mirror of https://github.com/kanaka/mal.git synced 2024-08-16 09:10:48 +03:00

Merge pull request #416 from bjh21/bjh21-equal-empty

step 4: Test that (= (list nil) (list)) returns false.
This commit is contained in:
Joel Martin 2019-07-15 00:01:16 -05:00 committed by GitHub
commit 6fd3a0db02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,6 +127,8 @@
;=>false
(= (list) 0)
;=>false
(= (list nil) (list))
;=>false
;; Testing builtin and user defined functions