make template provide threading and curly-fn

yknow just for fun
This commit is contained in:
xenia 2020-12-02 05:07:35 -05:00
parent 76cd3ad58e
commit c278b60801
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
;; utilities for every challenge script
(require "aoc-lib.rkt")
(provide answer dbg)
(require "aoc-lib.rkt" threading)
(provide answer dbg (all-from-out threading))
;; in-expression debug print, uwu
(define (dbg x)

View File

@ -1,4 +1,4 @@
#lang racket
#lang curly-fn racket
(require "scripts/aoc.rkt")