Hi everyone!
I’m learning Elixir with the book “Elixir in Action” (Btw I’m loving the book!), and when I try the examples inside the iex, the console is returning a series of numbers when a function is declared, here is an example:
{:module, Circle,
<<70, 79, 82, 49, 0, 0, 5, 76, 66, 69, 65, 77, 65, 116, 85, 56, 0, 0, 0, 139,
0, 0, 0, 15, 13, 69, 108, 105, 120, 105, 114, 46, 67, 105, 114, 99, 108, 101,
8, 95, 95, 105, 110, 102, 111, 95, 95, …>>, {:area, 1}}
I assume that the information inside the brackets at the end is the function and the arity, but I don’t know what is that series of numbers in the middle. What does that mean?
Thanks!