Packages

Data cleansing & aggregating libraries in Elixir

Current section

Files

Jump to
cleanex lib cleanex.ex
Raw

lib/cleanex.ex

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