Current section
Files
Jump to
Current section
Files
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