miguelsrrobo
Do you have to learn Erlang to learn Elixir?
hi i was wondering if it is necessary to learn erlang to learn elixir
Trending in Chat/Questions
Hey folks, I’ve been using Elixir for over a couple of years (phx, ecto, broadway, oban).
For this kind of work you do not tend, in my e...
New
Hi, I’m Dheeraj Sudan from the UK. I’m a software developer and also run a business with my wife Meenu Hinduja. I’m interested in getting...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #websockets
- #elixirconf-us
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










First 6 of 6 Posts!
dorgan
No, you can just learn elixir. Learning both can be beneficial, since you can call erlang code from elixir, but you can get very far without learning erlang.
The official Getting Started guide is an excellent starting point
derek-zhou
A good Elixir programmer should at least be able to read Erlang code. However that is only needed much later.
hauleth
No, you do not need to, but sooner or later at least minimal knowledge will be handy. However you will not avoid learning OTP principles.
patrickdm
If you feel interested in learning Erlang but can’t wrap your head around its syntax, I’d reccomend a minimal introduction to Prolog: apart of being an amazing and mind blowing programming language, you’ll find there the origin of many Erlang strangenesses
davearonson
Sort of. You won’t need to learn the Erlang language. However, there are occasionally things you might want to do, that you’d think might be in the Elixir standard libraries, or at least easily available from some common well-supported hex package. Sometimes you’re right, but sometimes the things aren’t in those places, but are in the Erlang libraries. So, you’ll quite likely need to learn how to find something in the Erlang libraries, and call it from Elixir. (Sorry, my own usage hasn’t been serious/frequent enough that I remember offhand those details, just that they exist.)
APB9785
I learned Elixir before ever touching any Erlang, but picked up quite a bit of it along the way.