[plt-scheme] Wrapping non-PLT code in modules
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