mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-16 09:17:35 +02:00
Handle vector literals
This commit is contained in:
parent
1305e61558
commit
935226740e
1 changed files with 1 additions and 0 deletions
1
eval.scm
1
eval.scm
|
@ -26,6 +26,7 @@
|
|||
(cond ((number? exp) #t)
|
||||
((boolean? exp) #t)
|
||||
((string? exp) #t)
|
||||
((vector? exp) #t)
|
||||
((char? exp) #t)
|
||||
((eof-object? exp) #t)
|
||||
(else #f)))
|
||||
|
|
Loading…
Add table
Reference in a new issue