Simplifying organization

This commit is contained in:
Jay McCarthy 2010-06-26 13:36:33 -06:00
parent 22d8ff470c
commit 6d3d135f4c
3 changed files with 3 additions and 11 deletions

View File

@ -24,5 +24,5 @@
(print-result
#,(compile-stmt (syntax->datum #'stmt))))]))
(provide module-begin
top-interaction)
(provide (rename-out [module-begin #%module-begin]
[top-interaction #%top-interaction]))

View File

@ -1,8 +0,0 @@
#lang racket/base
(require "lang.rkt")
(provide (rename-out [module-begin #%module-begin]
[top-interaction #%top-interaction])
(except-out (all-from-out racket/base)
#%top-interaction
#%module-begin))

View File

@ -1,5 +1,5 @@
(module reader syntax/module-reader
#:language 'datalog/lang/module
#:language 'datalog/lang/lang
#:read
(lambda ([in (current-input-port)])
(this-read-syntax #f in))