' ********************** ' PROGRAMM: Lauflicht 3 ' ********************** ' ' Verwendung von Variablen, Zählschleifen, Endlos-Schleife ' ' Variablendeklaration: ' -------------------- ' DIM x, n, t1 ' ' Wertezuweisung: ' --------------- ' t1=0.1 ' ' Start: ' ------ DO FOR n=1 TO 16 DOUT n, ON WAIT t1 NEXT FOR n=1 TO 16 DOUT n, OFF WAIT t1 NEXT LOOP