Re: How to solve this import in an eval problem?

2019-11-12 Thread Matt Welland
That works. Thanks! On Tue, Nov 12, 2019, 1:11 AM Peter Bex wrote: > On Mon, Nov 11, 2019 at 10:43:44PM -0700, Matt Welland wrote: > > I'm working toward porting my various projects to chicken 5 and for one > > project I first want to convert a bunch of compilation units to modules. > > This

Re: How to solve this import in an eval problem?

2019-11-12 Thread Peter Bex
On Mon, Nov 11, 2019 at 10:43:44PM -0700, Matt Welland wrote: > I'm working toward porting my various projects to chicken 5 and for one > project I first want to convert a bunch of compilation units to modules. > This has mostly gone well but I'm stuck on exposing module code in an eval. > Without

How to solve this import in an eval problem?

2019-11-11 Thread Matt Welland
I'm working toward porting my various projects to chicken 5 and for one project I first want to convert a bunch of compilation units to modules. This has mostly gone well but I'm stuck on exposing module code in an eval. Without modules this worked great as everything was visible to the eval. It