if
Stores the outcome of the following program block for determining the execution of program branches later on.
Syntax
if { program block }
Example
if
{
qfind "File is in format X" // fails unless this string is found in the data file
} then
{
// act accordingly
} else
{
// do something else, if appropriate
}