Text
EN
Version 1.90
STRUCTURAL KEYWORDS
Description
IF:
Structurally branches to a block of statements if the BOOL condition is met.
(In the version with ELSE, execution branches to the ELSE block if the BOOL condition is not met.)
Syntax:
IF(BOOL)
{
}
ELSE
{
}
or
IF(BOOL)
{
}
WHILE:
A block of statements is repeated as long as the BOOL condition is met.
Syntax:
WHILE(BOOL)
{
}
Note : This text was machine-translated and may contain inaccuracies.
