-- Hello world in Ada
-- File name should be hello1.adb (lower case)
-- Compile with gnatmake hello1  (or gnatmake hello1.adb)
-- Run with hello1  (or hello1.exe on windows)

with ada.text_io;      -- With required to access library ada.text_io

procedure hello1  is   -- hello is the main procedure
begin                  -- execution begins here
    ada.text_io.put_line("Hello everyone in ITEC 320");   -- like System.out.println
                                                          -- Fully qualified name
end  hello1;           -- repeat name on end statement

-- Output:
-- Hello everyone in ITEC 320