Packages

RPC transport for Elixir offering ultimate interopability with other languages

Current section

Files

Jump to
via lib via.ex
Raw

lib/via.ex

defmodule Via do
@moduledoc """
Documentation for `Via`.
"""
@doc """
Hello world.
## Examples
iex> Via.hello()
:world
"""
def hello do
:world
end
end