(atom? 'Harry) ;; => #t |
atom?手続き
(define atom? |
- 対でもなく
- null listでもない
(atom? 'Harry) ;; => #t ;; => #f ;; => #f |
(atom? '(Harry had a heap of apples)) ;; => #f |
- listだから
- atom?手続きはいくつの引数を取りますか?
- 一つのS式
(atom? (car '(Harry had a heap of apples))) ;; => #t |
- (car '(Harry had a heap of apples))
- Harry
- (atom? 'Harry)
- #t
0 件のコメント:
コメントを投稿