Add simple LearningSwitch Example

This commit is contained in:
Eishun Kondoh 2017-11-24 10:50:35 +09:00
parent ab21f6e240
commit f2768496c8
11 changed files with 334 additions and 0 deletions

View file

@ -0,0 +1,18 @@
defmodule LearningSwitch do
@moduledoc """
Documentation for LearningSwitch.
"""
@doc """
Hello world.
## Examples
iex> LearningSwitch.hello
:world
"""
def hello do
:world
end
end