diff --git a/hello.adb b/hello.adb new file mode 100644 index 0000000..5e85537 --- /dev/null +++ b/hello.adb @@ -0,0 +1,5 @@ +with Text_IO; use Text_IO; +procedure hello is +begin + Put_Line("Hello world!"); +end hello;