Difference between revisions of "Module:String"

From WPRDC Wiki
Jump to navigation Jump to search
>IAlex
(test)
(No difference)

Revision as of 10:45, 22 August 2012

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

local p = {}

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

return p