You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
299 B
Racket
9 lines
299 B
Racket
#lang racket/base
|
|
(provide (all-defined-out))
|
|
|
|
(define (load-in-namespace to-ns . module-names)
|
|
(for-each (λ(mn) (eval `(require ,mn) to-ns)) module-names))
|
|
|
|
(define (copy-from-namespace from-ns to-ns . module-names)
|
|
(for-each (λ(mn) (namespace-attach-module from-ns mn to-ns)) module-names))
|