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