While

The statements in a while loop are executed over and over while a condition is met. Format while (condition) { statements } Note that if the condition is false initially, the statements will never be executed. Example This code will wait until it is at least 3600...

Flow Control

Flow control statements control when and where code is executed (how it flows). The following keywords are parts of LSL flow control. Keyword Purpose if-else Execute some statements if a condition is true, other statements otherwise. while Execute some statements as...