[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Chicken-users] Multi-file modules
From: |
Kon Lovett |
Subject: |
Re: [Chicken-users] Multi-file modules |
Date: |
Sun, 26 Jul 2009 19:03:52 -0700 |
On Jul 26, 2009, at 3:59 PM, Michael Maul wrote:
Is there a way to define a module composed of multiple source files?
Depends on what you mean.
Assuming the sources are local to the compile directory:
(module foo (...)
(include "foo1")
....
(include "fooN")
) ;module foo
will work.
I've tried using a load in side the file where the module is defined
but that dosen't seem to work?
_______________________________________________
Chicken-users mailing list
address@hidden
http://lists.nongnu.org/mailman/listinfo/chicken-users
Best Wishes,
Kon