p2pchat/lib/p2p_chat.ex
2026-05-19 19:38:40 +02:00

18 lines
201 B
Elixir

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