felix winkelmann schrieb: > On 4/5/07, felix winkelmann <[EMAIL PROTECTED]> wrote: >> >> (define-macro (with-chicken v . body) >> (if (string>=? (chicken-version) "2.608") >> `(begin ,@body) >> '(void) ) ) >> > > Ahem, > > (define-macro (with-chicken v . body) > (if (string>=? (chicken-version) v) > `(begin ,@body) > '(void) ) ) Thanks, great. A regular at #chicken told me about (chicken-version) but i didn't realize that it could be used this way.
greets _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
