Module:String: Difference between revisions

    From Nonbinary Wiki
    (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