Loops

  • Loops are infinite, they do not self-terminate ( terminate without a break ).

  • The loop are simmilar to Rust's syntax.

  • The loop keyword is repeatdatshid.

  • The break keyword is sthu.

  • Standard form:

    repeatdatshid { # Opens a loop
      # ...
      sthu # Breaks the loop
      # ...
    }