2009/03/31

[The Little Schemer]atom

The Little Schemer」P.3 ~

 

これれらはatomですよーと。

atom
turkey
1492
u
*abc$

 

処理系では(quote hoge)または'hogeとなるですね。

atom
;; => error


'atom
;; => atom


(quote atom)
;; => atom

turkey
;; => error


'turkey
;; => turkey


(print 'turkey)
;; => turkey
;; => #<undef>

1492
;; => 1492


'1492
;; => 1492

*abc$
;; => error


'*abc$
;; => *abc$

(quote *abc$)
;; => *abc$

0 件のコメント:

コメントを投稿