Tutorial by Examples

For installation instructions on elixir check here, it describes instructions related to different platforms. Elixir is a programming language that is created using erlang, and uses erlang's BEAM runtime (like JVM for java). We can use elixir in two modes: interactive shell iex or directly running...
You can also use the IEx (Interactive Elixir) shell to evaluate expressions and execute code. If you are on Linux or Mac, just type iex on your bash and press enter: $ iex If you are on a Windows machine, type: C:\ iex.bat Then you will enter into the IEx REPL (Read, Evaluate, Print, Loop),...

Page 1 of 1