mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-23 07:06:07 +00:00
19 lines
190 B
Elixir
19 lines
190 B
Elixir
defmodule Test do
|
|
@moduledoc """
|
|
Documentation for Test.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> Test.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|