Packages

An implementation of Okasaki data structures

Current section

Files

Jump to
ox lib ox.ex
Raw

lib/ox.ex

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