I don’t agree w/ the assessment that it would be better that way, but…
Corona is an SDK (software development kit) and Lua is easy to use, so nothing is stopping you implementing your own timer.performWithDelay
function timer.performWithDelay2( ... ) for i = 1, #arg, 2 do timer.performWithDelay( arg[i+1], arg[i] ) end end local function func1() print("You can solve") end local function func2() print("These problems") end local function func3() print("On your own through coding.") end local function func4() print("That is the beauty of an SDK.") end timer.performWithDelay2( func1, 500, func2, 1000, func3, 1500, func4, 2000 )