timer.performWithDelay

I must be doing this…

http://developer.anscamobile.com/node/4705

wrong.

timer.performWithDelay ( 1000, myFunction() ) goes immediately.

even

timer.performWithDelay ( 1000, print “Where is my Delay” ) doesnt work.
ok, How am I doing it wrong? [import]uid: 100299 topic_id: 18018 reply_id: 318018[/import]

it should be like

timer.performWithDelay ( 1000, function()
print “Where is my Delay”
end )

or

timer.performWithDelay(
1000, myFunction ) [import]uid: 12482 topic_id: 18018 reply_id: 68851[/import]