Hi! Andy Wingo <wi...@pobox.com> skribis:
> Are you OK with adding them like this: > > (define-syntax (when condition stmt stmt* ...) > (if condition (begin stmt stmt* ...))) > > (define-syntax (unless condition stmt stmt* ...) > (if (not condition) (begin stmt stmt* ...))) Yes! (‘define-syntax-rule’ I suppose?) Ludo’.