This module provides an easy and efficient way to generate lengthy strings.
First, load the module.
Then, create the buffer and the functions that act on it.
Returns the contents of the buffer, with an optional separator string sep.
Adds the string s to the buffer.
Adds the string s to the buffer. The string is formatted with any subsequent arguments, following the rules used for string.format.
function p.main local getBuffer, print, printf = newBuffer print('Welcome to the English Wikipedia.') printf('There are currently %d articles on this site.', mw.site.stats.articles) return getBuffer(' ')end
return p
-- Assuming this module's name is "TestModule", and that mw.site.stats.articles returns 4500000,-- would output:-- "Welcome to the English Wikipedia. There are currently 4500000 articles on this site."