diff options
Diffstat (limited to 'languages/ada/app_templates/adahello/main.adb')
-rw-r--r-- | languages/ada/app_templates/adahello/main.adb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/languages/ada/app_templates/adahello/main.adb b/languages/ada/app_templates/adahello/main.adb new file mode 100644 index 00000000..e2c6f5da --- /dev/null +++ b/languages/ada/app_templates/adahello/main.adb @@ -0,0 +1,8 @@ +with Text_IO; + +procedure Main is + +begin + Text_IO.Put_Line ("Hello World"); +end Main; + |