DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

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

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦5b8f2138f⟧ TextFile

    Length: 385 (0x181)
    Types: TextFile
    Names: »B«

Derivation

└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13
    └─ ⟦124ff5788⟧ »DATA« 
        └─⟦this⟧ 
└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 

TextFile

PACKAGE BODY Pragma_Assert IS

   FUNCTION Check (Expression : IN Boolean) RETURN Boolean IS
   BEGIN
      IF Expression THEN
         RETURN True;
      ELSE
         RAISE Assertion_Error;
      END IF;
   END Check;

   PROCEDURE Check (Expression : IN Boolean) IS
   BEGIN
      IF NOT Expression THEN
         RAISE Assertion_Error;
      END IF;
   END Check;
END Pragma_Assert;