text-to-expression

This commit is contained in:
sforman
2023-08-04 07:47:12 -07:00
parent dedbb0115f
commit 35ffe71482
+2 -1
View File
@@ -42,7 +42,8 @@
(define (parse tokens) (parse0 tokens '()))
(define (text-to-expression text) (parse (tokenize text)))
(display (parse (tokenize "ab cd [[]] 234 [true] false")))
(display (text-to-expression "ab cd [[]] 234 [true] false"))
(newline)