aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2025-04-21 15:53:23 +0200
committerGravatar Johannes Christ <[email protected]>2025-04-21 15:53:23 +0200
commit590b72e80e57fec2768ebc0162e60cf0e4571405 (patch)
tree44637f5dad8ca9dda3f914f19c48251a189201a9 /lib
Initial commit
Diffstat (limited to 'lib')
-rw-r--r--lib/lithium.ex18
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