Elixir scripting (.exs, not escript)

Also you can put a shebang in the file, chmod a+rx <yourfile> and just run it standalone like a bash script (without the dependencies).

#!/usr/bin/env elixir

IO.puts "HELLO WORLD"
1 Like