cur/cur.rkt
William J. Bowman 8681282ef9
Added top-interactive support/fixed top-level eval
Also fixed some random stylistic things
2015-09-22 14:06:03 -04:00

32 lines
650 B
Racket

#lang racket/base
(module extra racket
(require
racket/syntax
syntax/parse
(for-template
(only-in "curnel/redex-lang.rkt"
cur-expand)))
(provide cur-match)
(define-syntax (cur-match syn)
(syntax-case syn ()
[(_ syn [pattern body] ...)
#'(syntax-parse (cur-expand syn)
[pattern body] ...)])))
(require
(rename-in "curnel/redex-lang.rkt" [provide -provide])
(only-in racket/base eof)
(for-syntax 'extra)
'extra)
(provide
(rename-out [-provide provide])
(for-syntax (all-from-out 'extra))
(except-out
(all-from-out
'extra
"curnel/redex-lang.rkt")
-provide))