Skip to content

Commit

Permalink
support use of cli instead of cli/expander as module language
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Jul 3, 2021
1 parent 449c11b commit bcf5c30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion expander.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
help
help-clause ; not intended to be used directly -- use help instead
flag
(rename-out (cli-module-begin #%module-begin))
(except-out (all-from-out racket/base)
#%module-begin)
(rename-out [cli-module-begin #%module-begin])
#%top #%app #%datum #%top-interaction)

(define-syntax-parser cli-module-begin
Expand Down
3 changes: 3 additions & 0 deletions main.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#lang racket/base

(require cli/expander)
(provide (all-from-out cli/expander))

(module reader racket/base
(require cli/reader)
(provide (all-from-out cli/reader)))

0 comments on commit bcf5c30

Please sign in to comment.