mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 04:25:06 +02:00
8 lines
117 B
Scheme
8 lines
117 B
Scheme
(import (scheme base)
|
|
(scheme read))
|
|
'aa
|
|
(define (quoted? exp)
|
|
(tagged-list? exp 'quote))
|
|
|
|
(write (read))
|
|
|