Conditional Statements
Decision structures in Caravan script are created using If-endif ,
if-elseif-endif conditional statements.
You can test conditions and then, depending on the results of that test,
perform different operation. The condition is usually a comparison,
but it can be any expression that evaluates to a value.
This sample covers
- Types of Conditional Statements
- Using IF statement
- Using IF-else statement
- Using IF-elseif statement
|