summaryrefslogtreecommitdiff
path: root/test.adb
diff options
context:
space:
mode:
authorrexim <reximkut@gmail.com>2024-03-09 02:17:48 +0700
committerrexim <reximkut@gmail.com>2024-03-09 02:17:48 +0700
commite0c32cf9ee2ba11bbb16c9b253ac0d6d7d4570fa (patch)
treed1e9db17c642752c230dff446bb0c27b0d40b848 /test.adb
parent73a8bb382c0ca8ecde0edbe7ff0214410949dd7c (diff)
Implement placing the bombs
Diffstat (limited to 'test.adb')
-rw-r--r--test.adb5
1 files changed, 4 insertions, 1 deletions
diff --git a/test.adb b/test.adb
index 268b1f1..401aeab 100644
--- a/test.adb
+++ b/test.adb
@@ -1,8 +1,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("Hello, World!");
+ Put_Line(Trim(Integer'Image(Index), Left));
end loop;
end;