[plt-scheme] dynamic-require module question

From: Robert Nikander (nikander at nc.rr.com)
Date: Tue May 15 18:31:26 EDT 2007

Hi,

If I want to load files defined in a custom language, is there a way 
that I can skip the module form?  In other words, can I replace this:

--- file1.cust-lang ---
(module "custom-language.scm"
    a b c)
--- load-it.scm ---
(dynamic-require "file1.newlang")
---

with something like this:

--- file1.cust-lang ---
a b c
--- load-it.scm ---
(dynamic-require-??? "file1.newlang" "custom-language.scm")


thanks,
Rob



Posted on the users mailing list.