7 lines
218 B
Clojure
7 lines
218 B
Clojure
|
|
(let [[a b] (repeatedly read)]
|
||
|
|
(doseq [[op string] [[< "less than"]
|
||
|
|
[> "greater than"]
|
||
|
|
[= "equal to"]]]
|
||
|
|
(when (op a b)
|
||
|
|
(println (str a " is " string " " b)))))
|