Current section

Files

Jump to
ordered_collections lib ordered_collections.ex
Raw

lib/ordered_collections.ex

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