Returns the numerator part of a Ratio.
;; note that the function always returns the numerator of the reduced fraction (numerator (/ 2 3)) ;;=> 2 user=> (map numerator [(/ 2 4) (/ 4 6) (/ 6 8)]) (1 2 3)
Returns the denominator part of a Ratio.
numerator