;不想在'b'中分配字母'a',想要'a'中包含的值
(define a 5)
(define c '(a c))
(define b (car c))
(display b)
答案 0 :(得分:1)
(define a 5)
(define c (list a 'c))
(define b (car c))
(display b)
'
等同于quote
程序。所以'(a c)
=> (list 'a 'c)
请参阅:http://www.gnu.org/software/mit-scheme/documentation/mit-scheme-ref/Quoting.html#Quoting
或者,使用您的原始代码,您是否会问{J 1}}