summaryrefslogblamecommitdiffstats
path: root/hello_world_ada/hello.adb
blob: 63f8ac02d84f5af19b9de9a74fc019a8071c7ea3 (plain) (tree)



















                                                 
--
--  Hello World with Flair
--

with Text_IO; use Text_IO;

procedure Hello is
begin
   Put_Line ("GNAT/RTEMS Hello World Test");
   New_Line;
   Put_Line ("Welcome to the World of Lady Ada");

   New_Line;
   Put_Line ("Initiating 2.5 second delay");
   delay 2.5;
   Put_Line ("Delay Complete");

   Put_Line ("Test Complete");
end Hello;