ytextensions/lib/yt_ext.ex

19 lines
195 B
Elixir
Raw Permalink Normal View History

2024-12-18 13:42:34 +00:00
defmodule YtExt do
@moduledoc """
Documentation for `YtExt`.
"""
@doc """
Hello world.
## Examples
iex> YtExt.hello()
:world
"""
def hello do
:world
end
end