diff options
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 |
