This commit is contained in:
2024-05-23 00:41:31 +02:00
parent d7d21eee83
commit b3cec2fd69
10 changed files with 209 additions and 11 deletions

25
lib/elixirsssh.ex Normal file
View File

@ -0,0 +1,25 @@
defmodule Elixirsssh do
use Application
def start(_type, _args) do
IO.puts(hello())
{:ok, self()}
end
@moduledoc """
Documentation for `Elixirsssh`.
"""
@doc """
Hello world.
## Examples
iex> Elixirsssh.hello()
:world
"""
def hello do
:world
end
end