|
|
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: 701 (0x2bd)
Types: TextFile
Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
with Text_Io;
use Text_Io;
with Window_Io;
use Window_Io;
procedure I_O_Rapide is
Term : Raw.Stream_Type;
Item : array (1 .. 10) of Raw.Key;
Toto : Window_Io.File_Type;
procedure Go is
begin
Raw.Open (Term);
end Go;
procedure Take is
begin
for I in 1 .. 10 loop
Raw.Get (Term, Item (I));
Bell (Toto);
end loop;
end Take;
procedure Test is
Tutu : Raw.Key;
begin
Go;
Take;
for I in 1 .. 10 loop
Tutu := Item (I);
Put_Line (Character'Image (Raw.Convert (Tutu)));
end loop;
end Test;
begin
Test;
Raw.Disconnect (Term);
end I_O_Rapide;