Current section

Files

Jump to
termite lib termite.ex
Raw

lib/termite.ex

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