' **************************************************************************** ' Description: Tutorial 7b, Other Conditional Actions. Shows how to use the ' If-Than-Else-Endif statements to act on a specific condition. ' In this case, do something if the condition is either TRUE ' or FALSE. ' Author: Jim KN6PE ' Revision: 10/03/08: Original ' **************************************************************************** SCRIPT Var x as NUMBER BEGIN x = 3 IF x > 5 THEN Print("X is greater than 5") ELSE Print("X is not greater than 5") ENDIF END