[plt-scheme] dynamic-require module question
Err... I meant (dynamic-require "file1.cust-lang"). You get the point.
Rob
Robert Nikander wrote:
> 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")