Packages

A simple library to perform a text encoding by rotating characters by n positions.

Current section

Files

Jump to
rotn lib rotn.ex
Raw

lib/rotn.ex

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