[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Apply



(Paolo Cattaneo) paolo@idsia.ch) writes:
 The following line used to evaluate correctly
 on MCL2.0b1 but does not in MCL2.0f. Why?
 (apply `(lambda (x) (* x x)) '(2))

The lambda expression is syntactically incorrect, the
anonymous function requires a #' not a ':
 ? (apply #'(lambda (x) (* x x)) '(2))
 4