Commenting on (apply) issue

This commit is contained in:
Justin Ethier 2015-06-03 17:59:12 -04:00
parent 2b46282f2d
commit e5d5305a57
2 changed files with 3 additions and 0 deletions

2
TODO
View file

@ -11,6 +11,8 @@ Working TODO list:
- apply seems broken:
cyclone> (apply append '((1) (2) (3)))
((1) (2) (3))
This is broken in the interpreter (eval) not in compiled code. probably a deficiency in eval.scm
- Constructs require for self-hosting

View file

@ -7,3 +7,4 @@
;`(read ,
(write (make-vector 4 #t))
(write (string->list "abc"))
(write (apply append '((1) (2) (3))))