Use the ASDF system properly and update template
[adventofcode2020.git] / src / dayNN.lisp
index 5b5dd9bb2043210f815f1e0ae076547a436155ab..8b16cc73c7fc4858b10aa302422e9ac56345bbb8 100644 (file)
@@ -1,16 +1,17 @@
+(asdf:load-system :adventofcode2020)
 (in-package #:adventofcode2020)
 
 (day 00 input
 (in-package #:adventofcode2020)
 
 (day 00 input
-  (let ((modules (int-list-from input)))
-    (part1 )
-    (part2 )))
+  (let ((lines (list-from input)))
+    (part1 '())
+    (part2 '())))
 
 (def-suite day00)
 (in-suite day00)
 
 
 (def-suite day00)
 (in-suite day00)
 
-(test simple-fuel
+(test
   (is (equal
   (is (equal
-        '(2 2 654 33583)
-        (mapcar #'simple-fuel '(12 14 1969 100756)))))
+        '()
+        '())))
 
 (run! 'day00)
 
 (run! 'day00)