Packages

Execute .exs scripts with the ability to depend on other mix projects (including hex packages) without setting up a project yourself.

Current section

Files

Jump to
herb lib herb.ex
Raw

lib/herb.ex

defmodule Herb do
@moduledoc """
Documentation for `Herb`.
"""
def main(args \\ []) do
IO.inspect({:args, args})
IO.puts("Herb doesn't actually work yet, coming soon…")
exit({:shutdown, 1})
end
end