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