mfm-parser/lib/mfm_parser.ex
Ilja cf49876a47 First commit
Initialise repository
2022-07-23 16:51:13 +02:00

18 lines
207 B
Elixir

defmodule MfmParser do
@moduledoc """
Documentation for `MfmParser`.
"""
@doc """
Hello world.
## Examples
iex> MfmParser.hello()
:world
"""
def hello do
:world
end
end