Module:Klortho/try

From Wikipedia

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

return {
    hello = function(frame)
        local s = '你好,世界'
        local name1 = frame.args.name1
        return 'The length of "' .. s .. '" is ' .. #s .. '; length of "你" is ' .. #'你' .. '\n' ..
            '; name1 is ' .. name1
    end
}