init
This commit is contained in:
9
lib/mix/tasks/hello.ex
Normal file
9
lib/mix/tasks/hello.ex
Normal file
@@ -0,0 +1,9 @@
|
||||
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
|
Reference in New Issue
Block a user