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
Index: ┃ B T

⟦7b5a2e12a⟧ TextFile

    Length: 626 (0x272)
    Types: TextFile
    Names: »B«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦e24fb53b7⟧ 
            └─⟦this⟧ 

TextFile

package body F_Frames is

    function Factorial_Image (For_Slot : Factorial_Slots; Value : Slot.Object)
                             return String is
    begin
        return Integer'Image (Slot.Get (Value));
    exception
        when Constraint_Error =>
            return "Undefined";
    end Factorial_Image;


    procedure Put_Factorial is new Factorials.Generic_Put
                                      (Image => Factorial_Image);


    procedure Put (The_Fact : F_Kbs.Kbs.Fact_Name;
                   Where    : Output_Stream.Object) is
    begin
        Put_Factorial (The_Fact, Where);
    end Put;

end F_Frames;