I'm using GNU Common Lisp(gcl), when I wrote:
( (lambda (f) (f 1 2)) '+ )
gcl complains:The Function F is undefined. why? It's invalid to pass a function to lambda macro ?
( (lambda (f) (f 1 2)) '+ )
gcl complains:The Function F is undefined. why? It's invalid to pass a function to lambda macro ?