Functionname: While
Description: A while statement executes a block of code in a loop while the condition evaluates to true. The expression is evaluated before each execution of the loop.
Example:
In the following example we specify an integer variable that equals zero.
While the number is less than 10, we log the number to console and add +1 to it until it evaluates false.
int number = 0;
while(number < 10)
{
Log(number);
number++;
}