Basilisp's `/` function is returning fractions for integer division even when the result is itself an integer. ```clojure (/ 3000 1000) ;;=> 3/1 ``` In Clojure: ```clojure (/ 3000 1000) ;;=> 3 ```