Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
式の結果を表示しないのはなぜですか?
(define a '((+ 1 5)(- 5 1))) (define (ex) (car a)) (write ex)
あなたは元に電話していません、試してください:
(write (ex))
(+ 1 5) を評価した結果が必要な場合は、
(define a (list (+ 1 5) (- 5 1)))