summaryrefslogtreecommitdiffstats
path: root/top.lisp
blob: 065291c11125005d88c572d14efd97ebfce252d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(ql:quickload 'uiop :silent t)
(ql:quickload 'cl-ppcre :silent t)
(ql:quickload 'clunit :silent t)

(load "src/common.lisp")

(clunit:defsuite aoc ())

(load "src/01.lisp")
(load "test/01.lisp")

(load "src/02.lisp")
(load "test/02.lisp")

(load "src/03.lisp")
(load "test/03.lisp")

(defun run-all () (run-suite 'aoc))