DataMuseum.dk

Presents historical artifacts from the history of:

CP/M

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about CP/M

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦99da9c262⟧ TextFile

    Length: 256 (0x100)
    Types: TextFile
    Names: »DEMO.SRC«

Derivation

└─⟦bb4d5968a⟧ Bits:30008918 MT+ SPP 1/3
    └─⟦this⟧ »DEMO.SRC« 

TextFile


PROGRAM DEMO_SOFTBUS;
TYPE 
REC = RECORD
I : INTEGER;
B : BOOLEAN
END
VAR 
REC1 : REC;
BEGIN
WITH REC2 DO
BEGIN
I = 2;
B := TRUE;
END;
IF REC1.B THEN
WRITELN('TRUE')
ELSE
WRITELN('FALSE')
END.


«eof»