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