Files
2026-06-05 00:59:45 +02:00

19 lines
207 B
Elixir

defmodule BunnyMask do
@moduledoc """
Documentation for `BunnyMask`.
"""
@doc """
Hello world.
## Examples
iex> BunnyMask.hello()
:world
"""
def hello do
:world
end
end