Packages

A full-text search engine written in pure Elixir.

Retired package: Deprecated - retired

Current section

Files

Jump to
searchex lib mix tasks run_hello.ex
Raw

lib/mix/tasks/run_hello.ex

defmodule Mix.Tasks.RunHello do
use Mix.Task
@moduledoc false
@shortdoc "HELLO"
def run(_) do
Mix.shell.info "HELLO THERE"
end
end