diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hope.ex | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/hope.ex b/lib/hope.ex new file mode 100644 index 0000000..7f4e66f --- /dev/null +++ b/lib/hope.ex @@ -0,0 +1,18 @@ +defmodule Hope do + @moduledoc """ + Documentation for `Hope`. + """ + + @doc """ + Hello world. + + ## Examples + + iex> Hope.hello() + :world + + """ + def hello do + :world + end +end |