racket/collects/racket/local.rkt
Eli Barzilay 2b76d9e5b0 A bunch of scheme' -> racket' conversions.
I think that there are no user-visible changes from these changes.
2012-04-19 16:02:03 -04:00

9 lines
170 B
Racket

#lang racket/base
(require (for-syntax racket/base)
"private/local.rkt")
(provide local)
(define-syntax (local stx)
(do-local stx #'letrec-syntaxes+values))