;; The "M" suffix denotes a BigDecimal instance ;; http://download.oracle.com/javase/6/docs/api/java/math/BigDecimal.html user=> (with-precision 10 (/ 1M 6)) 0.1666666667M user=> (.floatValue 0.1666666667M) 0.16666667
;; The "M" suffix denotes a BigDecimal instance ;; http://download.oracle.com/javase/6/docs/api/java/math/BigDecimal.html user=> (with-precision 10 (/ 1M 6)) 0.1666666667M user=> (.floatValue 0.1666666667M) 0.16666667
;; The "M" suffix denotes a BigDecimal instance ;; http://download.oracle.com/javase/6/docs/api/java/math/BigDecimal.html user=> (with-precision 10 (/ 1M 5)) 0.1666666667M user=> (.floatValue 0.1666666667M) 0.16666667
;; The "M" suffix denotes a BigDecimal instance ;; http://download.oracle.com/javase/6/docs/api/java/math/BigDecimal.html user=> (with-precision 10 (/ 1M 3)) 0.3333333333M user=> (.floatValue 0.3333333333M) 0.33333334
user=> (with-precision 10 (/ 1M 3)) 0.3333333333M The "M" suffix denotes a [BigDecimal](http://download.oracle.com/javase/6/docs/api/java/math/BigDecimal.html) instance. user=> (.floatValue 0.3333333333M) 0.33333334