' **************************************************************************** ' Description: Tutorial 7, Other Conditional Actions. Shows how to use the ' If-Than-Endif statements to act on a specific condition. ' In this case, only do something if the condition is true. ' Author: Jim KN6PE ' Revision: 10/03/08: Original ' **************************************************************************** SCRIPT Var x as NUMBER ' define a variable BEGIN x = 6 ' assign a variable IF x > 5 THEN ' test if it is greater than 5 Print("X is greater than 5") ENDIF END