I have these declared:
subtype Num_Char is Natural
range 1 .. Definitions.Page_Width + 1;
subtype Number_Of_Rows is Definitions.Number_Of_Rows;
type Chars is array (Number_Of_Rows, Num_Char) of Character;
The_Chars : Chars;
What is the best way to print this out to the screen using Ada.Text_IO.Put_Line()?
Assuming you want to use
Ada.Text_IOand not justPut_Linespecifically, and assuming thatNumber_Of_Rowsis meant to be an integer range likeNum_Char, that would be