DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 1309 (0x51d) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦this⟧ └─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
with Xlbt_Arithmetic; use Xlbt_Arithmetic; package Easy_X is type Events is (Update, Button_Up, Button_Down); type Fonts is (Small_Font, Medium_Font, Large_Font); subtype Coordinate is S_Short; subtype Dimension is U_Short_Positive; procedure Open (Display : String; Title : String := "Easy_X"; Left, Right : Coordinate := 100; Width, Height : Dimension := 800); procedure Move_To (X, Y : Coordinate); procedure Line_To (X, Y : Coordinate); procedure Set_Pen (Size : Dimension); procedure Set_Font (To : Fonts); procedure Draw_String (The_String : String); function Next_Event return Events; procedure Close; package Arithmetic is function "+" (C : Coordinate; D : Dimension) return Coordinate; function "-" (C : Coordinate; D : Dimension) return Coordinate; function "/" (D : Dimension; Scale : Positive) return Dimension; function "*" (D : Dimension; Scale : Positive) return Dimension; function "+" (D1, D2 : Dimension) return Dimension renames Xlbt_Arithmetic."+"; function "-" (D1, D2 : Dimension) return Dimension renames Xlbt_Arithmetic."-"; end Arithmetic; Fatal_Error, Value_Error : exception; end Easy_X;