2010-02-09 23:37:22 +00:00
|
|
|
(meditations
|
2010-05-07 02:56:43 +00:00
|
|
|
"You will face many decisions"
|
2010-11-03 03:29:45 +00:00
|
|
|
(= __ (if (false? (= 4 5))
|
|
|
|
:a
|
|
|
|
:b))
|
2010-02-09 23:37:22 +00:00
|
|
|
|
|
|
|
"Some of them leave you no alternative"
|
2010-11-03 03:29:45 +00:00
|
|
|
(= __ (if (> 4 3)
|
|
|
|
[]))
|
2010-02-09 23:37:22 +00:00
|
|
|
|
|
|
|
"And in such a case you may have nothing"
|
2010-11-03 03:29:45 +00:00
|
|
|
(= nil (if (nil? __)
|
|
|
|
[:a :b :c]))
|
2010-05-07 02:56:43 +00:00
|
|
|
|
|
|
|
"In others your alternative may be interesting"
|
2010-11-03 03:29:45 +00:00
|
|
|
(= :glory (if (not (empty? ()))
|
|
|
|
:doom
|
|
|
|
__))
|
2010-05-07 02:56:43 +00:00
|
|
|
|
|
|
|
"Or your fate may be sealed"
|
2010-11-03 03:29:45 +00:00
|
|
|
(= __ (if-not (zero? __)
|
|
|
|
'doom
|
|
|
|
'doom)))
|
2010-02-09 23:37:22 +00:00
|
|
|
|