Current section

Files

Jump to
soroban lib soroban.ex
Raw

lib/soroban.ex

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