Packages

nothing to see here

Current section

Files

Jump to
server lib server.ex
Raw

lib/server.ex

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