Packages
hello_elixir
0.1.0
This is a nice description for the hello elixir project, which sole purpose is to explore the possibility of publishing a package on hex.pm.
Retired package: Release invalid - Broken documentation
Current section
Files
Jump to
Current section
Files
lib/hello_elixir.ex
defmodule HelloElixir do
@moduledoc """
Documentation for `HelloElixir`.
This is the awesome HelloElixir module who will greet you with a friendly atom.
"""
@doc """
Hello world.
## Examples
iex> HelloElixir.hello()
:world
Just look how friendly the atom looks.
"""
def hello do
:world
end
end