systembooster/lib/system_booster.ex

19 lines
217 B
Elixir

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