RogerDodger (talk | contribs) (Created page with "local p = {}; p.lc = function(frame) local s = frame.args[1] return s:lower() end return p") Â |
RogerDodger (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
local s = frame.args[1] | local s = frame.args[1] | ||
return s:lower() | return s:lower() | ||
end | |||
p.rep = function(frame) | |||
local s = frame.args[1] | |||
local n = frame.args[2] | |||
return s:rep(n) | |||
end | end | ||
return p | return p |
Revision as of 12:38, 21 February 2022
Documentation for this module may be created at Module:String/doc