Current section

Files

Jump to
telegraph lib telegraph.ex
Raw

lib/telegraph.ex

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