From 490f2d82dbd3fe13b9bc462d95e9676f7c1e5645 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Thu, 3 Jun 2021 22:38:45 +0200 Subject: [PATCH] Provide :pattern and :template by default --- syndicate/main.rkt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/syndicate/main.rkt b/syndicate/main.rkt index 2c03168..423d1b5 100644 --- a/syndicate/main.rkt +++ b/syndicate/main.rkt @@ -2,10 +2,13 @@ (provide (all-from-out "actor.rkt") (all-from-out "syntax.rkt") - (all-from-out preserves)) + (all-from-out preserves) + :pattern + :template) (require (except-in "actor.rkt" actor-system)) (require "syntax.rkt") (require preserves) +(require (only-in "pattern.rkt" :pattern :template)) ;; (module reader syntax/module-reader syndicate/lang)