Packages

Encore is an elixir library for building temporal expressions as described by Martin Fowler in https://martinfowler.com/apsupp/recurring.pdf

Current section

Files

Jump to
encore lib encore.ex
Raw

lib/encore.ex

defmodule Encore do
@moduledoc """
Documentation for Encore.
"""
@doc """
Hello world.
## Examples
iex> Encore.hello
:world
"""
def hello do
:world
end
end