summaryrefslogtreecommitdiff
path: root/test.adb
diff options
context:
space:
mode:
Diffstat (limited to 'test.adb')
-rw-r--r--test.adb8
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;