10 REM Ship example for the Acorn Electron 20 REM as found in the original user manual. 30 : 40 REM Launch a small spaceship from the 50 REM bottom of the screen to the top. 60 : 70 MODE 4 80 VDU 23,1,0;0;0;0; 90 VDU 23,240,8,8,28,28,62,62,62,62 100 VDU 23,241,62,62,62,62,62,62,62,62 110 VDU 23,242,62,62,62,127,127,127,93,93 120 X=20 130 FOR Y=24 TO 0 STEP -1 135 REM The sound statement was added by me. 140 SOUND 1,-15,Y,1 150 PRINT TAB(X,Y);CHR$240; 160 PRINT TAB(X,Y);CHR$241; 170 PRINT TAB(X,Y);CHR$242; 180 FOR T = 1 TO 100: NEXT T 190 PRINT TAB(X,Y); " "; 200 PRINT TAB(X,Y+1); " "; 210 PRINT TAB(X,Y+2); " "; 220 NEXT Y