-
Notifications
You must be signed in to change notification settings - Fork 0
while
Grisgram edited this page Dec 29, 2024
·
7 revisions
Similar to the for loop, the while is also an entry-controlled loop. It repeats until the condition is false.
while <condition>[==true]
// ...
next
Similar to the for loop, the while loop is also closed by a next statement.
The code inside the loop executes repeatedly until the condition evaluates to false.
Back to Repo ● Wiki Home
Copyright © coldrock.games
- Home
- Scriptor Contents
- Scriptor Configuration
- Notepad⁺⁺ Integration
- Create a Script
- $ Variables
- Call a GML Function
- Scriptor global functions
- #-Commands
- The Scriptor Broker
- Broker Events
- Self-Registering Scripts
- Registering Broker Events
- Scriptor Broker File Format
- Extending Scriptor
- var
- new
- goto
- gosub and return
- return (without gosub)
- call
- reset
- Loops
- Conditionals