From f02980ac26d1109f61bd288a43bfe70033022baf Mon Sep 17 00:00:00 2001 From: justin Date: Tue, 26 Mar 2024 23:18:57 -0400 Subject: [PATCH] hello world program added --- hello.adb | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.adb 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;