Current section

Files

Jump to
hello_libary lib mix tasks hl.hello.ex
Raw

lib/mix/tasks/hl.hello.ex

defmodule Mix.Tasks.Hl.Hello do
use Mix.Task
@shortdoc "A simple hello task"
def run(_) do
Mix.shell().info("Simple hello from hello-libary")
end
end