Use the ASDF system properly and update template
[adventofcode2020.git] / src / dayNN.lisp
... / ...
CommitLineData
1(asdf:load-system :adventofcode2020)
2(in-package #:adventofcode2020)
3
4(day 00 input
5 (let ((lines (list-from input)))
6 (part1 '())
7 (part2 '())))
8
9(def-suite day00)
10(in-suite day00)
11
12(test
13 (is (equal
14 '()
15 '())))
16
17(run! 'day00)