Packages

A GUI frontend for baz

Current section

Files

Jump to
barry lib barry.ex
Raw

lib/barry.ex

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