diff options
author | rexim <reximkut@gmail.com> | 2024-03-08 23:53:18 +0700 |
---|---|---|
committer | rexim <reximkut@gmail.com> | 2024-03-08 23:53:18 +0700 |
commit | 943af780e66da1a24253a34365c6d6aa96a22fec (patch) | |
tree | b1f293f7dd8c98de809ed1e805eeb3e330748b91 /test.adb |
Ready. Set. Go!
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; |