[plt-scheme] How to use SLIB with mzc?
Hello all,
I'm trying to compile a project that makes use of the SLIB library
using mzc. Reading the mzc manual, it looks like I need to do
something like this:
(module hello-world
mzscheme
(require (lib "load.ss" "slibinit"))
(slib:require 'subarray)
(display "Hello world!")
(newline) )
Where '(slib:require subarray) is what I can grok as the way to not
have the mzscheme module system get confused between the two different
"require"s.
Needless to say, this does not work. How does one do it, then?
Thanks,
~Tomer
--
()