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.
私は「Lisp in Small Pieces」という本を勉強し始めました。たとえば、選択したラケット。しかし、最初の章にはコードサンプル (if (atom? e) . "atom?" とは? どこで定義するのか?) があります。
Scheme 標準では定義されていませんatom?。通常の定義は
atom?
(define (atom? x) (and (not (pair? x)) (not (null? x))))