aboutsummaryrefslogtreecommitdiff
path: root/lib/elixir_math_parser.ex
blob: cd300e95a86a1d77950bd69554bb5dd5d695f6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
defmodule ElixirMathParser do
  @moduledoc """
  Documentation for `ElixirMathParser`.
  """

  @doc """
  Hello world.

  ## Examples

      iex> ElixirMathParser.hello()
      :world

  """
  def hello do
    :world
  end
end