Jump to content

This is a test of release of MediaWiki 1.44.0-wmf.22 (cb2fb4e). Please report issues you encounter.

Module:Njardarlogar/rot

Unchecked
From Wikipedia

Documentation for this module may be created at Module:Njardarlogar/rot/doc

local p = {}

function p.finn(frame)
    ord = frame.args[1]
    lengd = string.len(ord)
    rot = string.sub(ord, 1, lengd-1)
    return rot
end
 
return p