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: ┃ T V

⟦f7adaf46c⟧ TextFile

    Length: 784 (0x310)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Easy_X;

package Custom is

    type Predefined_Id is (Valeur, Tortue, Stylo, Vrai, Faux, Vide);
    type Reserved_Word is (Avec, Pour, Prendre, Renvoyer);

    function Is_Predefined_Id (Id : String) return Boolean;
    function Is_Reserved_Word (Id : String) return Boolean;

    Block_Max_Number : constant Natural := 256;
    Id_Max_Length : constant Natural := 32;
    Max_Symbols_Per_Block : constant Natural := 128;
    Pen_Max_Number : constant Natural := 100;
    String_Max_Length : constant Natural := 256;
    String_Max_Number : constant Natural := 256;
    Turtle_Max_Number : constant Natural := 100;

    Left : Easy_X.Coordinate := 100;
    Right : Easy_X.Coordinate := 100;
    Width : Easy_X.Dimension := 800;
    Height : Easy_X.Dimension := 800;

end Custom;