8b16cc73c7fc4858b10aa302422e9ac56345bbb8
[adventofcode2020.git] / src / dayNN.lisp
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)