Mjapp
This commit is contained in:
25
lib/elixirsssh.ex
Normal file
25
lib/elixirsssh.ex
Normal 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
|
Reference in New Issue
Block a user