-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path08_conditionals.clj
More file actions
47 lines (38 loc) · 1.21 KB
/
08_conditionals.clj
File metadata and controls
47 lines (38 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
(ns koans.08-conditionals
(:require [koan-engine.core :refer :all]))
(defn explain-exercise-velocity [exercise-term]
(case exercise-term
:bicycling "pretty fast"
:jogging "not super fast"
:walking "not fast at all"
"is that even exercise?"))
(meditations
"You will face many decisions"
(= :a (if (false? (= 4 5))
:a
:b))
"Some of them leave you no alternative"
(= [] (if (> 4 3)
[]))
"And in such a situation you may have nothing"
(= nil (if (nil? 0)
[:a :b :c]))
"In others your alternative may be interesting"
(= :glory (if (not (empty? ()))
:doom
:glory))
"You may have a multitude of possible paths"
(let [x 5]
(= :your-road (cond (= x 3) :road-not-taken
(= x 4) :another-road-not-taken
:else :your-road)))
"Or your fate may be sealed"
(= 'doom (if-not (zero? 1)
'doom
'more-doom))
"In case of emergency, go fast"
(= "pretty fast"
(explain-exercise-velocity :bicycling))
"But admit it when you don't know what to do"
(= "is that even exercise?"
(explain-exercise-velocity :watching-tv)))