This commit is contained in:
Kartik K. Agaram 2021-06-06 16:40:35 -07:00
parent 86f9744257
commit f79ae9ea54
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,9 @@
`((fn (,var) ,@body) ,val))])
(when . [(mac (when cond . body)
`(if ,cond (do ,@body) ()))])
(list . [(def (list . args) args)])
(list . [(def (list . args)
# we should probably make a copy here
args)])
(len . [(def (len l)
(if (no l)
0