Created
January 14, 2017 11:23
-
-
Save pawlos/6a5977436f8c9e60561d4afc63d9bfaa to your computer and use it in GitHub Desktop.
Check the amount of allocated memory
This file contains 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
for t=1,500 do | |
for i=1,2 do | |
local l = "Hello world" | |
x = function() print(l) end | |
end | |
end | |
print(collectgarbage("count") * 1024) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment