Converts an integer to a string, with the specified radix.
radix
must be an integer from 2
to 36
inclusive.
(prn (int->str 42)) ; prints 42
(prn (int->str 42 2)) ; prints 101010
(prn (int->str 42 16)) ; prints 2A
Converts an integer to a string, with the specified radix.
radix
must be an integer from 2
to 36
inclusive.
(prn (int->str 42)) ; prints 42
(prn (int->str 42 2)) ; prints 101010
(prn (int->str 42 16)) ; prints 2A