Current section

Files

Jump to
hello_libary lib hello_libary.ex
Raw

lib/hello_libary.ex

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