Search found 2 matches

by mugmug
Thu Dec 27, 2012 2:54 pm
Forum: Common Lisp
Topic: Function (operator) as function parameter: how?
Replies: 5
Views: 9537

Re: Function (operator) as function parameter: how?

thank you !

I must have tried funcall at the wrong place.
There are Lisp-1 interpreters, I now know. I tried eulisp, but it did not even compile on my system.
Well, I ll be fine with the funcalls like in your example, for now.

cheers
by mugmug
Wed Dec 26, 2012 5:59 am
Forum: Common Lisp
Topic: Function (operator) as function parameter: how?
Replies: 5
Views: 9537

Function (operator) as function parameter: how?

Hello, This newbie is stuck on a problem and hopes any one can give him a hint. Having used Scheme somewhere in history, I am trying to use Lisp now. I am stuck on how to do the following Scheme statement in Lisp: ( (lambda (FN) ( FN '( PB PC ))) (lambda (varx) (cons 'PA varx))) The result is: (pa p...