Module:Sandbox/Peterwhy

Revision as of 17:00, 20 March 2013 by imported>Peterwhy (len function)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Sandbox/Peterwhy/doc

local p = {};

p.len = function (frame)
    local string = frame.args[1]
    return #string
end

return p;