diff options
| author | Anhgelus Morhtuuzh <william@herges.fr> | 2025-11-04 12:16:57 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <william@herges.fr> | 2025-11-04 12:16:57 +0100 |
| commit | 24570e7bf215c79a55927f23a6735acd8cd0ff59 (patch) | |
| tree | 9f04002e7d51a10c89a15fad97d4bf07a49ffd40 /lib | |
Initial commit
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/elixir_math_parser.ex | 18 |
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 |
