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

@ -12,6 +12,8 @@ Working TODO list:
cyclone> (apply append '((1) (2) (3))) cyclone> (apply append '((1) (2) (3)))
((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 - Constructs require for self-hosting
- vectors - vectors

View file

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