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)