Created
December 2, 2014 00:53
-
-
Save nefftd/aef5a150ed8cf641aa8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local function big_jenna(len) | |
if len < 1 then return '' end | |
local s = {} | |
for i = 1,math.min(len,10000) do | |
s[i] = math.random(33,126) -- change to desired printable range [1,256] | |
end | |
return string.char(unpack(s)) .. big_jenna(len - 10000) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment