aboutsummaryrefslogtreecommitdiff
path: root/lib/elixir_math_parser.ex
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-11-04 12:16:57 +0100
committerAnhgelus Morhtuuzh <william@herges.fr>2025-11-04 12:16:57 +0100
commit24570e7bf215c79a55927f23a6735acd8cd0ff59 (patch)
tree9f04002e7d51a10c89a15fad97d4bf07a49ffd40 /lib/elixir_math_parser.ex
Initial commit
Diffstat (limited to 'lib/elixir_math_parser.ex')
-rw-r--r--lib/elixir_math_parser.ex18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/elixir_math_parser.ex b/lib/elixir_math_parser.ex
new file mode 100644
index 0000000..cd300e9
--- /dev/null
+++ b/lib/elixir_math_parser.ex
@@ -0,0 +1,18 @@
+defmodule ElixirMathParser do
+ @moduledoc """
+ Documentation for `ElixirMathParser`.
+ """
+
+ @doc """
+ Hello world.
+
+ ## Examples
+
+ iex> ElixirMathParser.hello()
+ :world
+
+ """
+ def hello do
+ :world
+ end
+end