Current section
Files
Jump to
Current section
Files
lib/expandable.ex
defmodule Expandable do
@moduledoc """
Documentation for `Expandable`.
"""
@doc """
Hello world.
## Examples
iex> Expandable.hello()
:world
"""
def hello do
:world
end
end