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.
ねえ、私はDrSchemeでコードを書き込もうとしています:((function(x)(* xx))2)
しかし、私は次のようなメッセージを受け取りました:未定義の識別子への参照:関数
私は「プログラミング言語のエッセンシャル(第3版)」という言語を使用しており、DrSchemeのバージョンは4.2.1です。
ありがとう!
うーん...それはSchemeではありません。あなたはおそらく欲しい:
((lambda (x) (* x x)) 2)
おそらくあるはずです
((lambda(x)(* x x))2)
また
((fun(x)(* x x))2)