Current section

Files

Jump to
crucible lib crucible.ex
Raw

lib/crucible.ex

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