mirror of
https://github.com/sloanelybutsurely/typeid-elixir.git
synced 2024-11-28 09:52:53 -05:00
19 lines
198 B
Elixir
19 lines
198 B
Elixir
|
defmodule TypeID do
|
||
|
@moduledoc """
|
||
|
Documentation for `TypeID`.
|
||
|
"""
|
||
|
|
||
|
@doc """
|
||
|
Hello world.
|
||
|
|
||
|
## Examples
|
||
|
|
||
|
iex> TypeID.hello()
|
||
|
:world
|
||
|
|
||
|
"""
|
||
|
def hello do
|
||
|
:world
|
||
|
end
|
||
|
end
|