Issue with set-car!

This commit is contained in:
Justin Ethier 2015-03-25 10:16:19 -04:00
parent ce9061b7ce
commit c85c13d1d9

8
TODO
View file

@ -1,5 +1,13 @@
Working TODO list:
- Cyclone hangs when creating a circular list. I believe this used to work:
cyclone> (define a (list 1 2))
ok
cyclone> a
(1 2)
cyclone> (set-cdr! a a)
- Error handling
need to perform much more error handling of input code. one of the biggest is to report if a function is passed the wrong number of arguments, as this will result in segfauls, bad transport errors, etc downstream if it is allowed.