mirror of
https://github.com/zoldar/jenot.git
synced 2026-01-03 06:22:55 +00:00
18 lines
195 B
Elixir
18 lines
195 B
Elixir
defmodule Jenot do
|
|
@moduledoc """
|
|
Documentation for `Jenot`.
|
|
"""
|
|
|
|
@doc """
|
|
Hello world.
|
|
|
|
## Examples
|
|
|
|
iex> Jenot.hello()
|
|
:world
|
|
|
|
"""
|
|
def hello do
|
|
:world
|
|
end
|
|
end
|