blob: 401aeabdb1dfffee86fb4a7a6b5c3fab83a35dfc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
with Text_IO; use Text_IO;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Ada.Strings; use Ada.Strings;
procedure Test is
begin
for Index in 1..10 loop
Put_Line(Trim(Integer'Image(Index), Left));
end loop;
end;
|