From 1daa6dad8f14fb9a68c46a796ce2894688a9a106 Mon Sep 17 00:00:00 2001 From: JackFirth Date: Tue, 9 Dec 2014 18:10:00 -0800 Subject: [PATCH] Main definitions Provide exported definition --- define-with-expanders.rkt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/define-with-expanders.rkt b/define-with-expanders.rkt index 5104b5f..2b5428e 100644 --- a/define-with-expanders.rkt +++ b/define-with-expanders.rkt @@ -8,6 +8,8 @@ (for-syntax racket/base syntax/parse))) +(provide define-syntax-with-expanders) + (define-for-syntax (disp a) (displayln a) a) (define-for-syntax syntax-list? (and? syntax? (compose list? syntax->list)))