Add a simple hello world

`gnat make hello.adb`
This commit is contained in:
R. Tyler Croy 2010-10-28 20:35:14 -07:00
parent ff65b5d09c
commit 1d2ec121bb
1 changed files with 8 additions and 0 deletions

8
hello.adb Normal file
View File

@ -0,0 +1,8 @@
with Ada.Text_IO;
use Ada.Text_IO;
procedure Hello is
begin
Put_Line("Hello World!");
end;