Elixir's analog to `2#00000011` in Erlang

What would Elixir’s analog to 2#00000011 in Erlang be?

0b00000011 is for binary
0o00000011 is for octal
0x00000011 is for hexadecimal

4 Likes

It’s a pitty that we can’t have an arbitrary base as in erlang…

1 Like