Declaration DECLARATION
(declaration
name*)
name - シンボル
なし
proclaim
のみ
コンパイラーに対して、各nameが有効ではあるが 標準ではない可能性がある宣言の名前を知らせます。
この目的は、あるコンパイラーに対して、 この宣言が他のコンパイラーか他のプログラム処理のためのものであるので 警告を発しないように指示するものです。
declaim (declaration author target-language target-machine))
(declaim (target-language ada))
(declaim (target-machine IBM-650))
(defun strangep (x)
(declare (author "Harry Tweeker"))
(member x '(strange weird odd peculiar))) (