Jump to content

Program:Editype.bas: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 July 2025

  • curprev 04:4204:42, 19 July 2025 Vidak talk contribs 5,464 bytes +5,464 Created page with "<syntaxhighlight lang="bbcbasic"> 42 PC=1:LC=1:F=0:PRINT CHR$(14): DIM A$(200):PRINT "{CLEAR}":POKE 650,128 51 M$="" 53 PRINT "{CLEAR} MODE SELECTION":PRINT:PRINT:PRINT"LP=LOAD AND PRINT":PRINT 55 PRINT "N=NEW":PRINT:PRINT"E=EDIT":PRINT:PRINT"P=PRINT" 58 PRINT:PRINT "S=SAVE":PRINT:PRINT "L=LOAD":PRINT:PRINT "C=CONTINUE" 60 PRINT:INPUT "SELECT MODE: "; M$ 61 IF M$="E" THEN 3010 62 IF M$="P" THEN 3800 63 IF M$="N" THEN 100 64 IF M$="L" THEN 5000 65 IF M$="S" THEN 6000 66..."