-- Our first Ada program!

with ada.text_io;
 
procedure hello  is 
begin
   Ada.Text_IO.put("Hello students in ITEC 320!");
   Ada.Text_IO.put("I hope you have a great semester!");
end hello;