Packages
simple_data_structures
0.1.0
A collection of simple data structures for use in non production settings.
Current section
Files
Jump to
Current section
Files
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