When I divide numbers in clojure I get a fraction , how do I get the decimal?

clojure, floating-point, math, numbers

Solution

user> (float (/ 411 125))
3.288
user> (double (/ 411 125))
3.288

Problem

When I do `(/ 411 125)` , I don't get it in terms of decimal. How do I do that?

Original source