Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

While Loops

Dhruvan edited this page Oct 20, 2022 · 2 revisions

This is how While Loops work in Versace

While loops

  • The conditions in a while loop can follow the python syntax.
  • While loops are written in the following format:
while (condition) {
    (statements)
}
  • Example:
i = 0
while i < 10 {
    out < "Hello, my name is Jhon" < red
    i += 1
}
Clone this wiki locally