[plt-scheme] Wrapping non-PLT code in modules

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Tue Oct 29 10:24:40 EST 2002

At Tue, 29 Oct 2002 10:17:38 -0500, "Anton van Straaten" wrote:
>   For list-related administrative tasks:
>   http://list.cs.brown.edu/mailman/listinfo/plt-scheme
> 
> I have some code written for R5RS that I'd like to be able to wrap in a PLT
> module, without modifying the original source.  Is that possible, and if so,
> how do I do it?

 (module wrap-standard-code mzscheme
    (require (lib "include.ss"))
    (inclide "some-standard-scheme.scm")
    (provide oogle boogle bargle))

Matthew



Posted on the users mailing list.