6ff814a6d3
Starting fresh with... ```shell mix new server ```
18 lines
198 B
Elixir
18 lines
198 B
Elixir
defmodule Server do
|
|
@moduledoc """
|
|
Documentation for `Server`.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> Server.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|