To fast and to slow.

@dave1707 Here’s a toy for you:

-- Infiniloop

function setup()
    tween.delay(0.05, loopA)
    loop()
end

function loopA()
    print("So many loops!")
    tween.delay(1, loopA)
end

function loop()
    print("Looping!")
    tween.delay(1, loop)
    tween.delay(1, loop)
end

Exponential growth is fun.

@-)

@SkyTheCoder Yay! Shiny things!