From 20ec2356cb92c133492f14e104261f079b5aded1 Mon Sep 17 00:00:00 2001 From: Jon Rafkind Date: Mon, 8 Oct 2012 13:09:57 -0600 Subject: [PATCH] [honu] add macro user api --- collects/honu/core/api.rkt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 collects/honu/core/api.rkt diff --git a/collects/honu/core/api.rkt b/collects/honu/core/api.rkt new file mode 100644 index 0000000000..cf8f3bc4c6 --- /dev/null +++ b/collects/honu/core/api.rkt @@ -0,0 +1,13 @@ +#lang racket/base + +;; Public API for interfacing with the honu macro system + +(require "private/syntax.rkt" + "private/literals.rkt" + (for-syntax "private/compile.rkt" + "private/parse2.rkt")) +(provide define-honu-syntax + define-literal + (for-syntax racket-syntax + honu-expression + parse-all))