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