Skip to content

Commit 7408b16

Browse files
author
Colin Jones and Mike Jansen
committed
Add case.
1 parent ff7623f commit 7408b16

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ have any questions or want more direction before you start pitching in.
119119
- Alex Robbins
120120
- Jaskirat Singh Veen
121121
- Mark Simpson
122+
- Mike Jansen
122123

123124

124125
### Credits

ideaboard.txt

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Pre and Post conditions of functions
1919
Particular Functions
2020
=====
2121
vector-of
22-
case
2322
flatten
2423
frequencies
2524
group-by

src/koans/conditionals.clj

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
(defn explain-defcon-level [exercise-term]
2+
(case exercise-term
3+
:fade-out :you-and-what-army
4+
:double-take :call-me-when-its-important
5+
:round-house :o-rly
6+
:fast-pace :thats-pretty-bad
7+
:cocked-pistol :sirens
8+
:say-what?))
9+
110
(meditations
211
"You will face many decisions"
312
(= __ (if (false? (= 4 5))
@@ -8,7 +17,7 @@
817
(= __ (if (> 4 3)
918
[]))
1019

11-
"And in such a case you may have nothing"
20+
"And in such a situation you may have nothing"
1221
(= nil (if (nil? __)
1322
[:a :b :c]))
1423

@@ -26,5 +35,13 @@
2635
"Or your fate may be sealed"
2736
(= __ (if-not (zero? __)
2837
'doom
29-
'doom)))
38+
'doom))
39+
40+
"In case of emergency, sound the alarms"
41+
(= :sirens
42+
(explain-defcon-level __))
43+
44+
"But admit it when you don't know what to do"
45+
(= __
46+
(explain-defcon-level :yo-mama)))
3047

src/path_to_answer_sheet.clj

+3-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@
7070
0
7171
:glory
7272
4 6 :your_road
73-
''doom 0 ]}
73+
''doom 0
74+
:cocked-pistol
75+
:say-what?]}
7476

7577
"higher_order_functions" {"__" [4 8 12
7678
'(* x x)

0 commit comments

Comments
 (0)