|
|
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: 775 (0x307)
Types: TextFile
Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
└─⟦d65440be7⟧ »DATA«
└─⟦this⟧
with Bounded_String;
with Text_Io;
with Chaine;
procedure Essai_Chaine is
Str1 : String (1 .. 4) := "Toto";
Str3 : Bounded_String.Variable_String (20);
begin
Text_Io.Put ("Je suis une chaine de taille fixe : " & Str1);
Text_Io.New_Line;
for I in 1 .. 10 loop
declare
Str2 : String (1 .. I);
begin
Str2 := String'(1 .. I => '?');
Text_Io.Put ("Je suis une chaine de taille variable : " & Str2);
Text_Io.New_Line;
end;
end loop;
Bounded_String.Copy (Str3, "titi");
Text_Io.Put (Bounded_String.Image (Str3));
Text_Io.New_Line;
Bounded_String.Copy (Str3, "Ada est grand !");
Text_Io.Put (Bounded_String.Image (Str3));
Text_Io.New_Line;
end Essai_Chaine;