mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 16:57:35 +02:00
Must explicitly call (complex?) now
This commit is contained in:
parent
ec7c3c3308
commit
8efbf60528
2 changed files with 2 additions and 0 deletions
|
@ -306,6 +306,7 @@
|
||||||
(define (const-atomic? exp)
|
(define (const-atomic? exp)
|
||||||
(or (integer? exp)
|
(or (integer? exp)
|
||||||
(real? exp)
|
(real? exp)
|
||||||
|
(complex? exp)
|
||||||
;(string? exp)
|
;(string? exp)
|
||||||
;(vector? exp)
|
;(vector? exp)
|
||||||
;(bytevector? exp)
|
;(bytevector? exp)
|
||||||
|
|
|
@ -169,6 +169,7 @@
|
||||||
(define (const? exp)
|
(define (const? exp)
|
||||||
(or (integer? exp)
|
(or (integer? exp)
|
||||||
(real? exp)
|
(real? exp)
|
||||||
|
(complex? exp)
|
||||||
(string? exp)
|
(string? exp)
|
||||||
(vector? exp)
|
(vector? exp)
|
||||||
(bytevector? exp)
|
(bytevector? exp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue