Packages

Composable expansion helpers for Elixir.

Current section

Files

Jump to
expandable lib expandable.ex
Raw

lib/expandable.ex

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