Post #24: The GDScript While Loop
GDScript supports two main types of loops, a while and a for. Today we'll be looking into the while loop. See the code below:

This is not the cleanest, but it's meant to show three main things:
- What the GDScript 'while' loop looks like
continue- loop execution moves to the next iterationbreak- the loop breaks execution
Here is the output:
1
3
5
7
9