Hi,
timer.performWithDelay seems to be not working for me.
Consider the following program that consists of 3 lines
main.lua
print("now") timer.performWithDelay(5000, print("5 seconds later")) timer.performWithDelay(10000, print("10 seconds later"))
When I launch the program, I expect “now” to be printed in the console immediately, and “5 seconds later” to be printed 5 seconds later, etc.
However, they all are printed simultaneously!
What am I doing wrong?
I am using Corona Version 2016.2949 (2016.9.15) if it’s of any relevance.
Thanks in advance!
