Operand

_

gram: airship

> ./lib/airship.ex

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