Packages

Needed for a chicken soup sandwich.

Current section

Files

Jump to
chicken lib chicken.ex
Raw

lib/chicken.ex

defmodule Chicken do
@moduledoc """
Documentation for Chicken.
"""
@doc """
Hello world.
## Examples
iex> Chicken.hello
:world
"""
def hello do
:chicken
end
end