protohackers/lib/protohackers.ex

19 lines
216 B
Elixir
Raw Permalink Normal View History

2024-02-08 22:42:39 +01:00
defmodule Protohackers do
@moduledoc """
Documentation for `Protohackers`.
"""
@doc """
Hello world.
## Examples
iex> Protohackers.hello()
:world
"""
def hello do
:world
end
end