Get lambda reader macro working and fix day 03 bug
[adventofcode2020.git] / src / dayNN.lisp
index 5b5dd9bb2043210f815f1e0ae076547a436155ab..bd53ef0b636a72e493f8c5e15213a6e009ad18c1 100644 (file)
@@ -1,16 +1,18 @@
+(asdf:load-system :adventofcode2020)
 (in-package #:adventofcode2020)
+(named-readtables:in-readtable fn-reader)
 
 (day 00 input
-  (let ((modules (int-list-from input)))
-    (part1 )
-    (part2 )))
+  (let ((lines (list-from input)))
+    (part1 '())
+    (part2 '())))
 
 (def-suite day00)
 (in-suite day00)
 
-(test simple-fuel
+(test
   (is (equal
-        '(2 2 654 33583)
-        (mapcar #'simple-fuel '(12 14 1969 100756)))))
+        '()
+        '())))
 
 (run! 'day00)