Add test of behavior like the "module" language in DrRacket.

This commit is contained in:
Sam Tobin-Hochstadt 2011-09-12 12:14:50 -04:00
parent f9b0f0ce73
commit d0bf047121

View File

@ -0,0 +1,10 @@
#lang racket/load
(module m typed/racket (define x 1))
(require 'm)
(current-namespace (module->namespace ''m))
(eval 'x)
(eval 5)