summaryrefslogtreecommitdiff
path: root/test.adb
diff options
context:
space:
mode:
authorrexim <reximkut@gmail.com>2024-03-08 23:53:18 +0700
committerrexim <reximkut@gmail.com>2024-03-08 23:53:18 +0700
commit943af780e66da1a24253a34365c6d6aa96a22fec (patch)
treeb1f293f7dd8c98de809ed1e805eeb3e330748b91 /test.adb
Ready. Set. Go!
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;