Current section
Files
Jump to
Current section
Files
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