summaryrefslogtreecommitdiffstats
path: root/hello_world_ada/hello.adb
blob: 803b94e78bfccf4adcfd2cb10c43f8b4659abe02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--
--  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 ("*** END OF GNAT/RTEMS Hello World Test ***");
end Hello;