Added TODO regarding pure varargs

This commit is contained in:
Justin Ethier 2015-06-29 18:09:23 -04:00
parent 667092ee12
commit 44593b28af
2 changed files with 5 additions and 1 deletions

4
TODO
View file

@ -12,7 +12,9 @@ Working TODO list:
- Constructs require for self-hosting
- when
- support for pure varargs functions
see test2.scm, this is not quite implemented in the compiler
- eval
there is no concept of macro expansion, probably other deficiencies as well

View file

@ -10,3 +10,5 @@
(write (when (lambda () #t) 'true))
(write (when (lambda () #f) 'false))
((lambda test (write test)) 1 2 3 4)