Current section

Files

Jump to
hello_libary lib hello.ex
Raw

lib/hello.ex

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