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