chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] Module


From: Kon Lovett
Subject: Re: [Chicken-users] Module
Date: Mon, 5 Oct 2009 21:15:41 -0700


On Oct 5, 2009, at 8:46 PM, lowly coder wrote:

what if my structure looks like

/work/
/work/bar.scm
/work/foo/
/work/foo/foo.scm

how do I "use" foo/foo.scm from bar.scm? *use foo/foo" does find foo/ foo.scm

I don't think you can get there from here AFAIK. While you can load from an absolute or relative path the 'require' variants do not understand a filesystem hierarchy. So the binary can be loaded but any syntactic information isn't.

(module bar
  (...)
  (import scheme chicken (foo foo)) ;or "foo/foo"
  (require-library (foo foo))       ;or "foo/foo"
)

is nice but unsupported.

Please file a bug report.


<snip>

Sorry,
Kon






reply via email to

[Prev in Thread] Current Thread [Next in Thread]