10 lines
191 B
Elixir
10 lines
191 B
Elixir
defmodule Mix.Tasks.Hello do
|
|
@moduledoc "Prints a greeting: `mix help hello`"
|
|
use Mix.Task
|
|
|
|
@shortdoc "Prints 'hello' to the console"
|
|
def run(_args) do
|
|
IO.puts("hello")
|
|
end
|
|
end
|