Current section

Files

Jump to
structure lib structure.ex
Raw

lib/structure.ex

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