diff options
| author | 2025-04-21 15:53:23 +0200 | |
|---|---|---|
| committer | 2025-04-21 15:53:23 +0200 | |
| commit | 590b72e80e57fec2768ebc0162e60cf0e4571405 (patch) | |
| tree | 44637f5dad8ca9dda3f914f19c48251a189201a9 /lib | |
Initial commit
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 |