' **************************************************************************** ' Description: Tutorial 5, Looping... Forever!. Shows how to set up to loop ' on a series of statements ' Author: Jim KN6PE ' Revision: 10/03/08: Original ' **************************************************************************** SCRIPT Var x as NUMBER ' define the counter variable BEGIN x = 0 ' initialize x to 0 ' Loop on the following code. Press STOP on the Runtime Monitor ' to stop processing LOOP x = x + 1 ' count the # of passes Print("This is pass # " & x) ' write the results pause(5) ' pause for 5 seconds bet. passes ENDLOOP END