I don’t understand why I get '\a\b\t'
rather than [7,8,9]
?
iex(1)> list = [ [1,2,3], [4,5,6], [7,8,9] ]
[[1, 2, 3], [4, 5, 6], '\a\b\t']
I don’t understand why I get '\a\b\t'
rather than [7,8,9]
?
iex(1)> list = [ [1,2,3], [4,5,6], [7,8,9] ]
[[1, 2, 3], [4, 5, 6], '\a\b\t']
This might help you
And if that doesn’t help here is SO answer
Thank you I will take a look
They are the same, iex
is just trying to be helpful by formatting it as a printable string.