Elixir is a modern functional language built on top of the Erlang VM. It's fully compatible with Erlang, but features a more standard syntax and many more features. # Single line comments start with a number symbol. # There's no multi-line comment, # but you can stack multiple comments. # To use the Elixir shell use the `iex` command. # Compile your modules with the `elixirc` command. # Both shoul

