Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1.  
  2. subtype Valid_X is Positive range 1 .. 20;
  3. subtype Valid_Y is Positive range 1 .. 15;
  4.  
  5. No_Of_Squares_X : constant Valid_X := 20;
  6. No_Of_Squares_Y : constant Valid_Y := 15;
  7.  
  8. type Arr_Column is
  9. array (0 .. No_Of_Squares_Y+1) of Character;
  10.  
  11. type Board_Type is
  12. array (0 .. No_Of_Squares_X+1) of Arr_Column;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement