19 lines
311 B
Clojure
19 lines
311 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 "Our Tale's Beginning"
|
|
:chapter-2 "To Be a Knight"
|
|
:chapter-3 "In the Slammer"
|
|
:chapter-4 "Tick the Ex-con"
|
|
:chapter-5 "Slingshot Stew"})
|
|
|
|
|