Hi All!
I’ve met something easily reproductible and weird.
Bellow, you can see the versions of elixir and erlang I’m using as well as the lines I executed on iex:
Erlang/OTP 24 [erts-12.1.4] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [jit]
Interactive Elixir (1.13.0-rc.0) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> Map.values(%{a: 1})
[1]
iex(2)> Map.values(%{a: 12})
'\f'
I was expecting this return value [12].
Please tell me if you encounter the same results, if you know the reason behind this?
I suspect a bug but I’m just hoping for some anomaly in my thinking or setup
Thanks!