From 1b24d8142d10a604df9a1cb73f93ed304e87a3d3 Mon Sep 17 00:00:00 2001 From: haskal Date: Fri, 4 Dec 2020 01:23:10 -0500 Subject: [PATCH] throw more generally useful re-exports in aoc.rkt --- scripts/aoc.rkt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/aoc.rkt b/scripts/aoc.rkt index 5dbbd22..9401746 100644 --- a/scripts/aoc.rkt +++ b/scripts/aoc.rkt @@ -2,8 +2,9 @@ ;; utilities for every challenge script -(require "aoc-lib.rkt" threading) -(provide answer dbg (all-from-out threading)) +(require "aoc-lib.rkt" threading syntax/parse/define (for-syntax racket/syntax)) +(provide answer dbg (all-from-out threading syntax/parse/define) + (for-syntax (all-from-out racket/syntax))) ;; in-expression debug print, uwu (define (dbg x)