Let us take our first steps in elixir language by writing a hello world script
IO.puts("Hello World")Save this to the file hello.exs
Now run the file using following command
$ elixir hello.exs
Hello World|
Note
|
There are two types of extensions that you will find for elixir programs
|