Packages

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.

Current section

Files

Jump to
hello_elixir lib hello_elixir.ex
Raw

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