then
Indicates that the following block should be executed if the result of the last if statement was true.
Syntax
then { program block }
Comments
program block is executed only if the result of the last if statement was true; that is, no failure occurred.
Example
if
{
// some true statement
}then
{
// react accordingly
}