tres/examples/learning_switch/lib/learning_switch.ex
2017-11-24 10:50:35 +09:00

18 lines
218 B
Elixir

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