Did you know?
Kye
Posts: 2,200
This is more efficient...
Than this...
In fact, the first statement saves 2 bytes. This is useful when you have some code that is just spinning in a one liner repeat loop with no statements inside of the loop.
repeat while(true)
Than this...
repeat while(true)
In fact, the first statement saves 2 bytes. This is useful when you have some code that is just spinning in a one liner repeat loop with no statements inside of the loop.
Comments
Do you know if there's a time difference between the two loops?