Packages

my library description

Current section

Files

Jump to
hex_sample lib hex_sample.ex
Raw

lib/hex_sample.ex

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