Packages

A grab bag of utilities I tend to want, so I can build faster.

Current section

Files

Jump to
fast lib fast.ex
Raw

lib/fast.ex

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