initi elixir project

This commit is contained in:
lilly 2026-05-19 19:38:35 +02:00
commit 4fe3b96832
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g
10 changed files with 197 additions and 0 deletions

18
lib/p2p_chat.ex Normal file
View file

@ -0,0 +1,18 @@
defmodule P2pChat do
@moduledoc """
Documentation for `P2pChat`.
"""
@doc """
Hello world.
## Examples
iex> P2pChat.hello()
:world
"""
def hello do
:world
end
end