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




_______________________________________________
Chicken-users mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to