diff options
author | rexim <reximkut@gmail.com> | 2024-03-09 02:17:48 +0700 |
---|---|---|
committer | rexim <reximkut@gmail.com> | 2024-03-09 02:17:48 +0700 |
commit | e0c32cf9ee2ba11bbb16c9b253ac0d6d7d4570fa (patch) | |
tree | d1e9db17c642752c230dff446bb0c27b0d40b848 /test.adb | |
parent | 73a8bb382c0ca8ecde0edbe7ff0214410949dd7c (diff) |
Implement placing the bombs
Diffstat (limited to 'test.adb')
-rw-r--r-- | test.adb | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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; |