aoc2020/scripts/template.rktrkt

21 lines
251 B
Plaintext
Raw Normal View History

2020-12-01 21:33:57 +00:00
#lang racket
;; solution for day @day
2020-12-02 08:02:58 +00:00
;; helper functions here
(module+ test
(require rackunit)
;; tests here
(void))
2020-12-01 21:33:57 +00:00
(module+ main
(define input (file->... "inputs/@day"))
;; part 1
;; ...
;; part 2
;; ...
(displayln "meow"))