Re: [Chicken-users] Compile time modules query

2014-10-27 Thread Peter Bex
On Mon, Oct 27, 2014 at 03:02:12PM +1100, James Baker wrote: Hey Folks, Have been toying around with Chicken lately and just started learning the module system which seems really nice to use so far. Just have one question which is probably obvious but I'm not seeing how to do it. Hello

Re: [Chicken-users] Compile time modules query

2014-10-27 Thread James Baker
Modules do not exist after compilation. However, you can extract the module definitions into a module import file (via the -j or -J switch for csc) and load that through (import foo). This may be a little unfortunate as it makes module-environment less useful, and you will have to split up

[Chicken-users] Compile time modules query

2014-10-26 Thread James Baker
Hey Folks, Have been toying around with Chicken lately and just started learning the module system which seems really nice to use so far. Just have one question which is probably obvious but I'm not seeing how to do it. I've got a trivial example below which works fine from the interpreter but