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

tests/stepA: add gensym and clean or macro tests

This commit is contained in:
Dov Murik 2016-01-20 22:50:37 -05:00
parent a193b2c470
commit 718f8e4d6c

View File

@ -180,3 +180,9 @@
(meta +)
;=>nil
;;
;; Testing gensym and clean or macro
(= (gensym) (gensym))
;=>false
(let* [or_FIXME 23] (or false (+ or_FIXME 100)))
;=>123