Packages

Universal compute in Elixir.

Current section

Files

Jump to
universe lib universe.ex
Raw

lib/universe.ex

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