|
DataMuseum.dkPresents historical artifacts from the history of: Jet Computer Jet80 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Jet Computer Jet80 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - download
Length: 512 (0x200) Types: TextFile Names: »INDTAL.PAS«
└─⟦692ac107c⟧ Bits:30005923 PolyPascal-80 V3.10 arbejdsdiskette 1 └─ ⟦this⟧ »INDTAL.PAS«
PROGRAM talind; LABEL x; VAR laes,i : integer; textfil : text; filnavn :string(.12.); BEGIN WRITE(clrhom); WRITE('Hvad skal filen hedde? ');readln(filnavn); assign(textfil,filnavn); rewrite(textfil); REPEAT WRITE('Indl▶91◀s tallet ');readln(laes); IF laes=0 THEN GOTO x; WRITE(textfil,laes); WRITELN(textfil); UNTIL laes=0; x:close(textfil); END.