Packages

Library for creating command line applications with Elixir.

Current section

Files

Jump to
lieutenant lib lieutenant.ex
Raw

lib/lieutenant.ex

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