Packages

A toolkit to work with poncho projects

Current section

Files

Jump to
poncho lib poncho.ex
Raw

lib/poncho.ex

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