Files
exproj/lib/mix/tasks/hello.ex
2025-08-27 07:44:17 +02:00

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