[Chicken-users] cond-expand failing inside module

2009-04-15 Thread Nathan Thern
Hello all- It seems cond-expand is not recognized inside module declarations. I have the following file saved as "extra.scm": (module extra (when unless) (cond-expand (plt) (else (define-syntax when (syntax-rules () ((_ cond . body) (if cond (begin . body) (define-synt

Re: [Chicken-users] cond-expand failing inside module

2009-04-15 Thread Jim Ursetto
On Wed, Apr 15, 2009 at 6:26 PM, Nathan Thern wrote: > Hello all- > It seems cond-expand is not recognized inside module declarations. I > have the following file saved as "extra.scm": > > (module >  extra >  (when unless) > > (cond-expand (plt) (else You forgot to (import scheme). Jim