Siegfried Gonzi <siegfried.gonzi@kfunigraz.ac.at> wrote:
+---------------
| It is an interesting discussion. I often have thougt that an explicit
| funcall mechanism as in CommonLisp could help to document one's
| Scheme code.
+---------------
Well, if that's what you really want, it's easy enough to do in Scheme:
> (define (funcall f . rest)
(apply f rest))
> (funcall + 3 4 5)
12
>
;-} ;-}
-Rob
-----
Rob Warnock, PP-ASEL-IA <rpw3@rpw3.org>
627 26th Avenue <URL:http://rpw3.org/>
San Mateo, CA 94403 (650)572-2607