This is the Lua sandbox of HouseBlaster (talk · contribs · blocks · protections · deletions · page moves · rights · RfA).
local p = {} function p.main(frame) local toReturn = '' for i=1,10 do toReturn = toReturn .. i if i == 100 then break end end return toReturn end return p