Packages

A double entry accounting system using Ecto

Current section

Files

Jump to
book lib book.ex
Raw

lib/book.ex

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