Module:String

Nothing to hide, but nothing to show you either.
Revision as of 10:45, 22 August 2012 by mediawikiwiki>IAlex (test)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

local p = {}

function p.length( str )
    return string.len( str )
end    

return p