Packages

A collection of simple data structures for use in non production settings.

Current section

Files

Jump to
simple_data_structures lib simple_data_structures.ex
Raw

lib/simple_data_structures.ex

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