First of all this is the first program we have had to write by ourselves and it is working, but I don't think I did it the way he wanted to.
Below is information on what I was suppose to do:
-- Book instructions
1. Write an Ada program that will print your initials in large block letters, with each letter made up of the same character it represents. The letters should be a minimum of seven printed lines high and should appear in a row. For example, if your initials are DOW, your program should print out

Be sure to include appropriate comments in your program, choose meaning identifiers, and use indentation as we do in the programs in this chapter.
-- Teachers added instructions
Complete Programming Problem #1 on page 114 of your textbook. The obvious solution is to use string literals as actual parameters in seven calls to the procedure Ada.Text_IO.Put. An alternative (and easier) solution is to define seven named constants - one for each output line - and use those constants as actual parameters in seven calls to the procedure Ada.Text_IO.Put. Use this second alternative in your solution.
Call your program assign2 and store it in a file named assign2.adb Include header comments with your name and a brief description of what the program does.
Upload your program using the link below. Upload only the source code of your program.
Programs that do not compile will not be graded.
Here is the code for my program (disregard small things like the program is not named as he instructed and that I don't have seven lines in the text apperance, this was just a test.
Code:
As you may be able to see the constants are doing nothing at this point and the only thing displaying the letters are the Ada.Text_IO.Put commands. I am wondering if I did it the way he instructed or did I use the constants wrong.
Thanks for any and all help.
FYI, it may not look like the initials are aligned here, but they are in the program just fine. It looks like this in the program.

Below is information on what I was suppose to do:
-- Book instructions
1. Write an Ada program that will print your initials in large block letters, with each letter made up of the same character it represents. The letters should be a minimum of seven printed lines high and should appear in a row. For example, if your initials are DOW, your program should print out
Be sure to include appropriate comments in your program, choose meaning identifiers, and use indentation as we do in the programs in this chapter.
-- Teachers added instructions
Complete Programming Problem #1 on page 114 of your textbook. The obvious solution is to use string literals as actual parameters in seven calls to the procedure Ada.Text_IO.Put. An alternative (and easier) solution is to define seven named constants - one for each output line - and use those constants as actual parameters in seven calls to the procedure Ada.Text_IO.Put. Use this second alternative in your solution.
Call your program assign2 and store it in a file named assign2.adb Include header comments with your name and a brief description of what the program does.
Upload your program using the link below. Upload only the source code of your program.
Programs that do not compile will not be graded.
Here is the code for my program (disregard small things like the program is not named as he instructed and that I don't have seven lines in the text apperance, this was just a test.
Code:
Code:
with Ada.Text_IO;
procedure initials is
-- Constants
Line_one : constant string := "RRRRR JJJJJJJ DDDD";
Line_two : constant string := "R R J D D";
Line_three : constant string := "RRRRR J D D";
Line_four : constant string := "R R J J D D";
Line_five : constant string := "R R J D D";
begin
Ada.Text_IO.Put (Item => "RRRRR JJJJJJJ DDDD ");
Ada.Text_IO.New_Line;
Ada.Text_IO.Put (Item => "R R J D D ");
Ada.Text_IO.New_Line;
Ada.Text_IO.Put (Item => "RRRRR J D D ");
Ada.Text_IO.New_Line;
Ada.Text_IO.Put (Item => "R R J J D D ");
Ada.Text_IO.New_Line;
Ada.Text_IO.Put (Item => "R R J D D ");
end initials;
Thanks for any and all help.
FYI, it may not look like the initials are aligned here, but they are in the program just fine. It looks like this in the program.