On 6/28/07, Graham Fawcett <[EMAIL PROTECTED]> wrote:
* (define (my-printf . args) ($ printf args)) in your compiled code

Oops, sorry, that won't work as written. It should have been something
like (apply ($ printf) args) but you cannot do that. The one-argument
"cheat" would be

(define (my-printf arg) ($ printf arg))

This wasn't central to my message, so I won't spend more time on it --
just wanted to point out the broken code.

Graham


_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to