[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-users] macro and module question from newbie.
From: |
Evan Hanson |
Subject: |
Re: [Chicken-users] macro and module question from newbie. |
Date: |
Fri, 6 Mar 2015 10:03:20 +1300 |
Hi,
You must indicate that `m` should be visible within the expansion of
`bar`, using the following export format:
(module foo ((bar m)) ...)
Otherwise, everything looks fine.
See the IDENTIFIER syntax under
http://wiki.call-cc.org/man/4/Modules#module for more information.
Cheers,
Evan