[racket] A function that creats a single module from multiple modules?

From: Danny Yoo (dyoo at hashcollision.org)
Date: Mon Apr 22 17:03:59 EDT 2013

I think we need a little more information.  What would be the meaning
of merging modules together?  Is there a possibility of modules
overlapping?  Can you  say how you'd do it manually?  Maybe there's
already functionality in Racket's module system to do what you want.

Usually, if we need a module to present a unified interface that's a
conglomeration of other helper modules, we can use a combination of
(require ...) and (provide (all-from-out ...)).

Good luck!

Posted on the users mailing list.