Post History
Clojure - 15 characters total, 5 unique Inspired by the Embed ESCR solution above, I realized I could do something very similar in Clojure: (/(*)(+(*)(*))) This returns 1/2, which is a Ratio i...
#1: Initial revision
<h2>Clojure - 15 characters total, 5 unique</h2>
Inspired by the `Embed ESCR` solution above, I realized I could do something very similar in Clojure:
(/(*)(+(*)(*)))
This returns 1/2, which is a Ratio in Clojure.
(*) - `*` with no arguments returns 1.
(+...) - `+` returns the sum of its arguments
(/...) - `/` divides the first argument by the second, returning a Ratio.
