Current section
Files
Jump to
Current section
Files
lib/simple_hex.ex
defmodule SimpleHex do
@moduledoc """
Documentation for SimpleHex.
"""
@doc """
Hello world.
## Examples
iex> SimpleHex.hello()
:world
"""
def hello do
:world
end
end