From 3abfc51bef0d333829bc62892f352c61f32bba5c Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 4 Mar 2015 13:59:21 -0500 Subject: [PATCH] Expanded TODO --- TODO | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/TODO b/TODO index 5fdd4416..a8a1b94c 100644 --- a/TODO +++ b/TODO @@ -24,6 +24,21 @@ cyclone> (a 1) Error: Unbound variable a +and also + +cyclone> (define a 1) +ok +cyclone> a +1 +cyclone> a +1 +cyclone> a +1 +cyclone> a +Error: Unbound variable +a + +something *very* weird is going on with variable access in the interpreter right now. problem may just manifest itself when GC is set to normal mode?? - Issues with detecting cycles: - (equal?) loops forever when comparing two different circular lists