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