mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Removed fixed issue
This commit is contained in:
parent
583b9297de
commit
92de7efa9d
1 changed files with 0 additions and 40 deletions
40
TODO
40
TODO
|
@ -1,45 +1,5 @@
|
|||
Working TODO list:
|
||||
|
||||
- Intepreter needs work:
|
||||
|
||||
cyclone> (define a (lambda (x) x))
|
||||
ok
|
||||
cyclone> a
|
||||
(procedure (x) ...)
|
||||
cyclone> (a 1)
|
||||
1
|
||||
cyclone> a
|
||||
(procedure (x) ...)
|
||||
cyclone> (a 'e)
|
||||
Error: Unknown procedure type -- EXECUTE-APPLICATION
|
||||
(quote e)
|
||||
|
||||
and issues with interpreted vars being lost - WTF?
|
||||
|
||||
cyclone> (define a (lambda (x) x))
|
||||
ok
|
||||
cyclone> (a 1)
|
||||
1
|
||||
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
|
||||
- printing *global-environment* in the repl still loops forever
|
||||
|
|
Loading…
Add table
Reference in a new issue