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