Numbers in Clojure include:
-6, 0, 1, 25, 976 and 500000.-2.4, 0.1, 3.14, 16.984025 and 1024.0.Two common numeric types are int and float. An int is a 32-bit integer and a float is a 64-bit floating-point number.
Arithmetic is done using the standard arithmetic operators. Numbers can be compared using the standard numeric comparison operators and the equality (=) and inequality (<>) operators.