|
|
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 - metrics - downloadIndex: B T
Length: 1213 (0x4bd)
Types: TextFile
Names: »B«
└─⟦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 Easy_X, Graphic_Objects, Text_Io;
procedure Demo (Display : String := "aconit:0") is
use Graphic_Objects;
begin
Easy_X.Open (Display);
loop
case Easy_X.Next_Event is
when Easy_X.Update =>
Draw_The_Netherlands (60, 700, 140);
Easy_X.Set_Font (To => Easy_X.Small_Font);
Easy_X.Move_To (50, 50);
Easy_X.Draw_String ("these are");
Easy_X.Draw_String (" very nice");
Easy_X.Draw_String (" wind mills");
Easy_X.Set_Font (To => Easy_X.Medium_Font);
Easy_X.Move_To (100, 100);
Easy_X.Draw_String ("these are very nice wind mills !!");
Easy_X.Set_Font (To => Easy_X.Large_Font);
Easy_X.Move_To (150, 150);
Easy_X.Draw_String ("these are");
Easy_X.Draw_String (" very nice");
Easy_X.Draw_String (" wind mills");
when Easy_X.Button_Down =>
exit;
when Easy_X.Button_Up =>
null;
end case;
end loop;
Easy_X.Close;
exception
when others =>
Easy_X.Close;
end Demo;
pragma Main;