I have define a function.
(defun my-func (v0)
(lambda (v1)
(+ v0 v1)))
Then input the expression in the slime command line.
((my-func 1) 5)
Then the sbcl report "illegal function call".I don't know why it is illegal. In my opinion, (my-func 1) returns a lambda function, then apply the lambda function to the number 5.Is my opinion wrong? I'm a beginner to learn the common lisp.