            REM MOVXY
            REM This 'droid shows what happens when there are
            REM values in XVEL & YVEL at the same time.

        100 xvel=100:yvel=100:gosub 300
            yvel=0:gosub 300: yvel=-100:gosub 300
            xvel=0:gosub 300: xvel=-100:gosub 300
            yvel=0:gosub 300: yvel= 100:gosub 300
            xvel=0:gosub 300: goto 100

        300 for i = 1 to 10:next:return
