aboutsummaryrefslogtreecommitdiff
path: root/lib/hope.ex
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-15 06:17:25 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-15 06:17:25 -0600
commita106c948c2056cb855ae6603842c5c165f03d716 (patch)
treea3b94b924ebf3d487ce3a14b7c1f1b3eae7b0610 /lib/hope.ex
downloadhope-elixir.tar.gz
hope-elixir.zip
initialize Elixir projectelixir
Diffstat (limited to 'lib/hope.ex')
-rw-r--r--lib/hope.ex18
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