Add day 04 (and fn library)
[adventofcode2020.git] / package.lisp
index 6a6f94b5ae4c3cc9bffcfe4dd432c0daea1d9445..77c89221b17ec447e8ce8af285a28c4ec05013a2 100644 (file)
@@ -1,8 +1,11 @@
-; (ql:quickload :fiveam) (ql:quickload :cl-ppcre)
-(defpackage #:adventofcode2020
-  (:use #:cl 
-        #:arrow-macros
-        #:alexandria
-        #:fiveam)
+(progn (ql:quickload :fiveam) 
+       (ql:quickload :cl-ppcre) 
+       (ql:quickload :fn))
+(defpackage :adventofcode2020
+  (:use :cl 
+        :arrow-macros
+        :alexandria
+        :fn
+        :fiveam)
   (:import-from :cl-ppcre :split)
   (:nicknames :aoc2020))