Control Flow

Looping

To loop many times over a block of code, use the loop keyword followed by the statements of the loop in braces.

loop {
  // statements here.
}