lytlang/lib/lytlang.ex
Daniel Flanagan f09f9d8edf WIP parsing
2019-05-11 14:00:46 -05:00

31 lines
318 B
Elixir

defmodule Lytlang do
@moduledoc """
Documentation for Lytlang.
"""
@doc """
Hello world.
## Examples
iex> Lytlang.hello()
:world
"""
def hello do
:world
end
@doc """
Echo.
## Examples
iex> Lytlang.echo("world")
"world"
"""
def echo(s) do
s
end
end