Packages

A collection of text algorithms.

Current section

Files

Jump to
ex_text lib ex_text.ex
Raw

lib/ex_text.ex

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