Current section

Files

Jump to
gen_cli lib gen_cli.ex
Raw

lib/gen_cli.ex

defmodule GenCLI do
@moduledoc """
Documentation for `GenCLI`.
"""
@doc """
Hello world.
## Examples
iex> GenCLI.hello()
:world
"""
def hello do
:world
end
end