Packages

A light Time and DateTime library with functions that are currently not supported by Elixir native DateTime module.

Current section

Files

Jump to
ex_time lib ex_time.ex
Raw

lib/ex_time.ex

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