(asdf:load-system :adventofcode2020) (in-package #:adventofcode2020) (named-readtables:in-readtable :adventofcode2020) (day 00 input (let ((lines (list-from input))) (part1 '()) (part2 '()))) (def-suite day00) (in-suite day00) (test (is (equal '() '()))) (run! 'day00)