[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Apply
- To: paolo@idsia.ch
- Subject: Re: Apply
- From: "Mark A. Tapia" <markt@dgp.toronto.edu>
- Date: Tue, 11 Aug 1992 13:22:12 -0400
- Cc: info-mcl@cambridge.apple.com
(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