Why is the app on corona SDK puts the RAM?
Code main.lua:
function update(e)
display.newRect(w/2, h/2, w, h):setFillColor(0,0,0,1);
display.newText(os.date('*t').sec, w/2, h/2);
end;
Runtime:addEventListener( "enterFrame", update );
Code shows seconds, 5 minutes later this code to run the RAM hammered...
How can I fix t...