Skip to content

Instantly share code, notes, and snippets.

@fnuecke
Created May 24, 2015 10:09
Show Gist options
  • Save fnuecke/ce3b90cb2627d4c0a664 to your computer and use it in GitHub Desktop.
Save fnuecke/ce3b90cb2627d4c0a664 to your computer and use it in GitHub Desktop.
local computer = require("computer")
while true do
local maxMem = 0
for i=1,10 do maxMem = math.max(maxMem, computer.freeMemory()) os.sleep(0) end
print(maxMem)
os.sleep(5)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment