mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-07 05:06:36 +02:00
Added TODO's
This commit is contained in:
parent
c6bd33bfe9
commit
d434cf0f73
1 changed files with 2 additions and 0 deletions
|
@ -305,10 +305,12 @@
|
|||
;; Booleans
|
||||
;; Do not use add-tok below, no need to quote a bool
|
||||
((eq? #\t next-c)
|
||||
;; TODO: read in rest of #true if it is there
|
||||
(if all?
|
||||
(parse fp '() (cons #t toks) all? #f parens ptbl)
|
||||
#t))
|
||||
((eq? #\f next-c)
|
||||
;; TODO: read in rest of #false if it is there
|
||||
(if all?
|
||||
(parse fp '() (cons #f toks) all? #f parens ptbl)
|
||||
#f))
|
||||
|
|
Loading…
Add table
Reference in a new issue