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