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"})
|
|
|
|
|