Elixir comes with integers and floating point numbers.
An integer literal can be written in decimal, binary, octal and hexadecimal formats.
iex> x = 291
291
iex> x = 0b100100011
291
iex> x = 0o443
291
iex> x = 0x123
291
As Elixir uses bignum arithmetic, the range of int...