diff options
Diffstat (limited to 'test.adb')
-rw-r--r-- | test.adb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test.adb b/test.adb new file mode 100644 index 0000000..268b1f1 --- /dev/null +++ b/test.adb @@ -0,0 +1,8 @@ +with Text_IO; use Text_IO; + +procedure Test is +begin + for Index in 1..10 loop + Put_Line("Hello, World!"); + end loop; +end; |