blob: 7240fc3426f08e375609ad42e34e189209a844b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
defmodule Server do
@moduledoc """
Documentation for `Server`.
"""
@doc """
Hello world.
## Examples
iex> Server.hello()
:world
"""
def hello do
:world
end
end
|