Packages

Playful text manipulations and animations including Nyan Cat, upside down, backwards, and Bon Iver!

Current section

Files

Jump to
tacocat lib tacocat.ex
Raw

lib/tacocat.ex

defmodule Tacocat do
@moduledoc """
This module provides a simple API: its functions are the ones users should use.
"""
alias Tacocat.Flipper
defdelegate flip(text), to: Flipper, as: :flip
defdelegate backflip(text), to: Flipper, as: :backflip
end