mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
10 lines
238 B
Scheme
10 lines
238 B
Scheme
(import (scheme base)
|
|
(scheme read))
|
|
|
|
(write `(read ,(+ 1 2 3)))
|
|
(write `(read ,(list 1 2 3)))
|
|
(write `(read ,@(list 1 2 3)))
|
|
;`(read ,
|
|
(write (make-vector 4 #t))
|
|
(write (string->list "abc"))
|
|
(write (apply append '((1) (2) (3))))
|