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