ProtoLang.net

Reference: Loops

☰ Hide Sidebar

Loops allow repeated execution of code blocks while specified conditions remain True.

  • While: Repeatedly executes code as long as a condition is True.
  • Continue: Skips the rest of the current iteration and moves to the next.
  • Break: Immediately exits a loop regardless of the condition.
  • End While: Marks the end of a While loop block.