planterette/plt-server/lib/plt_server.ex

19 lines
207 B
Elixir

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