19 lines
351 B
Clojure
19 lines
351 B
Clojure
(ns advent.saves)
|
|
|
|
(def chapters
|
|
{:chapter-1 nil
|
|
:chapter-2 nil
|
|
:chapter-3 nil
|
|
:chapter-4 nil
|
|
:chapter-5 nil})
|
|
|
|
|
|
(def chapter-name
|
|
{:chapter-1 "Part 1: Our tale's beginning"
|
|
:chapter-2 "Part 2: To be a knight"
|
|
:chapter-3 "Part 3: In the slammer"
|
|
:chapter-4 "Part 4: Tick the ex-con"
|
|
:chapter-5 "Part 5: Slingshot stew"})
|
|
|
|
|