Packages

Elixir wrapper for internet banking

Current section

Files

Jump to
banking lib banking.ex
Raw

lib/banking.ex

defmodule Banking do
@moduledoc """
Documentation for Banking.
"""
@doc """
Hello world.
## Examples
iex> Banking.hello
:world
"""
def hello do
:world
end
end