tres/examples/patch_panel/lib/patch_panel.ex
2018-02-25 23:44:58 +09:00

18 lines
206 B
Elixir

defmodule PatchPanel do
@moduledoc """
Documentation for PatchPanel.
"""
@doc """
Hello world.
## Examples
iex> PatchPanel.hello
:world
"""
def hello do
:world
end
end