Current section

Files

Jump to
excalt lib excalt.ex
Raw

lib/excalt.ex

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