Packages

Tools for working with data effectively - data contracts using types, schemas, domain validation rules, type-safe casting, and more.

Current section

Files

Jump to
drops lib drops.ex
Raw

lib/drops.ex

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