10 ! This little program demonstrates the "label direction" command. 20 ! It prints the word "rotation" in a number of different angles. 30 ! 40 INTEGER angle 50 ! 60 PEN 1 @ GCLEAR @ LORG 1 @ DEG @ CSIZE 6 @ SCALE -100,100,-50,50 70 ! 80 FOR angle=0 TO 360 STEP 30 90 MOVE 0,0 100 LDIR angle 110 LABEL USING "K" ; " rotation" 120 NEXT angle 130 ! 140 END