Towaway69 2 days ago

I keep running into learn you some erlang[1] which seems to be a good online resource. The author of which also wrote the "Erlang in Anger"[2] book.

Then there is the BEAM book[3] which provides an deep dive into Erlang and the BEAM virtual machine.

I'm not the best person to ask since I'm only starting out on Erlang! I much prefer to code visually :)

[1] https://learnyousomeerlang.com [2] https://www.heroku.com/blog/erlang-in-anger/ [3] https://blog.stenmans.org/theBeamBook/

  • bn-l 2 days ago

    Thanks for the suggestions! I looked at "learn you some erlang" and I like the style and humor of it.

randito 2 days ago

You may want to consider Elixir instead. It has an easier syntax and is (don't quote me on this) equivalent in function and purpose with Erlang. Plus you get lots of other goodies like LiveView (notebooks) and a good web stack (Phoenix).

  • Towaway69 2 days ago

    I prefer Erlang because it makes the uniqueness of its paradigm clear. Tail recursion, function matching and, bang, everything is a message!

    Elixir makes everything seem like Ruby code and many of those Erlang concepts are hidden away, which is also ok but also takes much away.

    My aim with ErlangRED is that both are supported, there is a repository for Elixir code[1] that is included in ErlangRED - so I don't take sides, rather I would like to take advantage of both paradigms.

    [1] https://github.com/gorenje/erlang-red-elixir-helpers