Skip to content

Instantly share code, notes, and snippets.

@jordi-chacon
Created June 23, 2015 12:33
Show Gist options
  • Save jordi-chacon/b66f144201b88ba3a89f to your computer and use it in GitHub Desktop.
Save jordi-chacon/b66f144201b88ba3a89f to your computer and use it in GitHub Desktop.
Dummy script
#!/usr/bin/env elixir
defmodule Script do
def main(_args) do
IO.puts ""
end
end
@alco
Copy link

alco commented Jun 23, 2015

#!/usr/bin/env elixir

defmodule Script do
  def main(args) do
    IO.inspect args
  end
end

Script.main(System.argv)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment