Current section
Files
Jump to
Current section
Files
lib/simple_queue.ex
defmodule SimpleQueue do
@moduledoc """
Documentation for SimpleQueue.
"""
@doc """
Hello world.
## Examples
iex> SimpleQueue.hello
:world
"""
def hello do
:world
end
end