Module:Njardarlogar/rot

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