最初のページ 戻る 次へ 最後のページ 画像

'の有無で意味が違う (quioteの意味)

なにが違うのか?

(define f *)

(f 2 3)

(define f '*)

(f 2 3)

(define f (quote *))

(f 2 3)

これは同じもの