Packages

A set of Elixir utilities for myself and others. Using this Hex package as a test bed for ideas that may be eventually spun off as separate projects or open source contributions.

Current section

Files

Jump to
iamvery lib iamvery.ex
Raw

lib/iamvery.ex

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