[plt-scheme] How to use SLIB with mzc?

From: taltman at lbl.gov (taltman at lbl.gov)
Date: Fri Mar 26 16:06:54 EST 2004

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
-- 
()



Posted on the users mailing list.