From 1d2ec121bbf7da540556af8edcd959a3ac4658a6 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Thu, 28 Oct 2010 20:35:14 -0700 Subject: [PATCH] Add a simple hello world `gnat make hello.adb` --- hello.adb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 hello.adb diff --git a/hello.adb b/hello.adb new file mode 100644 index 0000000..491c910 --- /dev/null +++ b/hello.adb @@ -0,0 +1,8 @@ + +with Ada.Text_IO; +use Ada.Text_IO; + +procedure Hello is +begin + Put_Line("Hello World!"); +end;