|  | DataMuseum.dkPresents historical artifacts from the history of: RegneCentralen RC700 "Piccolo" | 
This is an automatic "excavation" of a thematic subset of
 See our Wiki for more about RegneCentralen RC700 "Piccolo" Excavated with: AutoArchaeologist - Free & Open Source Software. | 
top - metrics - download
    Length: 640 (0x280)
    Types: TextFile
    Names: »DEMOLEN.PAS«
└─⟦3702e543b⟧ Bits:30003064 Demoprogrammer A-J til Pascal bog
    └─⟦this⟧ »DEMOLEN.PAS« 
        PROGRAM demolen;
        
        TYPE
          strengtype = STRING(.15.);
        
        VAR
          streng : strengtype;
          i : INTEGER;
        
        BEGIN
          streng := '';
          FOR i := 1 TO 5 DO
            BEGIN
              WRITELN(streng:12, LEN(streng):3);
              streng := streng +'A';
            END;
          WRITELN(streng:12, LEN(streng):3);
          streng := streng + streng ;
          WRITELN(streng:12, LEN(streng):3);
        END.
        «eof»