在执行我的代码期间,我在不同的Scheme实现中遇到以下错误:
球拍:
application: not a procedure;
expected a procedure that can be applied to arguments
given: '(1 2 3)
arguments...:
Run Code Online (Sandbox Code Playgroud)
的Ikarus:
Unhandled exception
Condition components:
1. &assertion
2. &who: apply
3. &message: "not a procedure"
4. &irritants: ((1 2 3))
Run Code Online (Sandbox Code Playgroud)
鸡:
Error: call of non-procedure: (1 2 3)
Run Code Online (Sandbox Code Playgroud)
开局:
*** ERROR IN (console)@2.1 -- Operator is not a PROCEDURE
((1 2 3) 4)
Run Code Online (Sandbox Code Playgroud)
MIT计划:
;The object (1 2 3) is not applicable.
;To continue, call RESTART with an option number: …Run Code Online (Sandbox Code Playgroud)