SOLVED (how do I mark this as solved?): Turns out I had left behind junk in my repl/shell and R was already bound. Oopsie. Thanks for the help
Hi, I’ve just started learning erlang and using it for work after 15 years in other languages.
Like all new platforms and tools, some things are new and surprising coming from a different enviornment.
I’d like to learn the reasons for some language design choices, the first one I found really surprising being this one here:
5> case [a] of
[] -> wtf;
[A|R] -> a_r;
[A] -> a
end.
a
6> case [a] of
[] -> wtf;
[A|_] -> a_r;
[A] -> a
end.
a_r
Here we can see that the second pattern becomes semantically different if we bind a variable as the tail or not (R
vs _
)
I’m having a lot of fun so far with the langauge, but some things feel like they could be useful to have in a list of surprising behaviors coming from other backgrounds (Example: One book that was really useful learning the langauge “Go” was “100 go mistakes and how to avoid them”, which lists surprises in that langauge)
What would you recommend for learning the background to the language choice above?