init: igniter.new

This commit is contained in:
2026-03-13 17:42:49 +01:00
parent 9b8ce9ab3d
commit 001748613e
8 changed files with 104 additions and 3 deletions

18
lib/parrhesia.ex Normal file
View File

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