For vectors, spaces come before 2nd-Nth values; #(1 2 3) vs. #(12 3 ).
This commit is contained in:
parent
f3458173c4
commit
d79eab3848
|
|
@ -233,8 +233,8 @@
|
||||||
(unless (zero? (vector-length value))
|
(unless (zero? (vector-length value))
|
||||||
(write-rla-val (vector-ref value 0)))
|
(write-rla-val (vector-ref value 0)))
|
||||||
(for ([i (in-range 1 (vector-length value))])
|
(for ([i (in-range 1 (vector-length value))])
|
||||||
(write-rla-val (vector-ref value i))
|
(write-char #\Space)
|
||||||
(write-char #\Space))
|
(write-rla-val (vector-ref value i)))
|
||||||
(write-string ")")]
|
(write-string ")")]
|
||||||
[(null? value)
|
[(null? value)
|
||||||
(write-string "()")]
|
(write-string "()")]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue