Hacker News new | ask | show | jobs
by nickserv 3076 days ago
You mentioned Erlang, where do you normally use it?
1 comments

Well, the erlang vm is what runs Elixir apps. Elixir runs on the erlang VM (called BEAM) similar to how scala/clojure run on the JVM. However, while writing a lot of elixir code you end up using the erlang standard library for things which are not available in Elixir, :crypto is a module which comes to mind. Elixir apps at the end of the day are erlang apps.