-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheuler.asd
More file actions
21 lines (19 loc) · 731 Bytes
/
euler.asd
File metadata and controls
21 lines (19 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; euler.asd
(asdf:defsystem #:euler
:serial t
:description "Solutions for Project Euler http://projecteuler.net"
:author "Michael Bentley"
:license "Public domain - but if you use any of this to answer Project Euler problems, you're missing the point"
:components ((:file "package")
(:file "euler")
(:file "util")
(:file "problem-001")
(:file "problem-002")
(:file "problem-003")
(:file "problem-004")
(:file "problem-005")
(:file "problem-006")
(:file "problem-007")
(:file "problem-008")
(:file "problem-009")
(:file "problem-010")))