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