]>
Commit | Line | Data |
---|---|---|
1 | (asdf:load-system :adventofcode2020) | |
2 | (in-package #:adventofcode2020) | |
3 | (named-readtables:in-readtable :adventofcode2020) | |
4 | ||
5 | (day 00 input | |
6 | (let ((lines (list-from input))) | |
7 | (part1 '()) | |
8 | (part2 '()))) | |
9 | ||
10 | (def-suite day00) | |
11 | (in-suite day00) | |
12 | ||
13 | (test | |
14 | (is (equal | |
15 | '() | |
16 | '()))) | |
17 | ||
18 | (run! 'day00) |