Packages

A brief description of the butterfly package.

Current section

Files

Jump to
butterfly lib butterfly.ex
Raw

lib/butterfly.ex

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