A control statement that is shorthand for an infinite loop. ``` loop { doStuff() } ``` equivalent to ``` while true { doStuff() } ```
A control statement that is shorthand for an infinite loop.
equivalent to