show/hide this revision's text 3 providing a little more explanation

You just need to give the proper bounds for in the first forstatement statements. It's important to pay careful attention when applying the low and high functions to multi-dimensional arrays. For the current example (a 2-dimensional array), by using low(grid) and high(grid) will return the limits on the first column of dimension (row), whereas low(grid[0]) and high(grid[0]) will return the grid, i.e. limits on the first column (note assuming it exists). Note the changed "for" limits)for limits below:

program Play_console;

{$APPTYPE CONSOLE}

uses
  SysUtils;

{$R+}
procedure play;
var
   grid: array of array of boolean;
   x, y: integer;
begin
  try
   setLength(grid, 3, 8);
   grid[1, 5] := true;
   for y := low(grid[0]) to high(grid[0]) do
   begin
      for x := low(grid) to high(grid) do
      begin
         if grid[x, y] then
            write('X')
         else write('.');
      end;
      writeln;
   end;

   readln;
  except
    on E:Exception do
      Writeln(E.Classname, ': ', E.Message);
  end;
end;

begin
   play;
end.

I tested this and it seems to do exactly what you want.

show/hide this revision's text 2 tested

Seems that all you

You just need to do in give the NEW version proper bounds for the first for statement, by using the limits on the first column of your question is to swap references to "x" and "y" in your "for" statementsthe grid, i.e. this works fine (if I understand what you want)note the changed "for" limits):

program Play_console;

{$APPTYPE CONSOLE}

uses
  SysUtils;

{$R+}
procedure play;
var
   grid: array of array of boolean;
   x, y: integer;
begin
  try
   setLength(grid, 3, 8);
   grid[1, 5] := true;
   for x y := low(gridlow(grid[0]) to high(gridhigh(grid[0]) do
   begin
      for y x := low(grid[x]low(grid) to high(grid[x]high(grid) do
      begin
         if grid[x, y] then
            write('X')
         else write('.');
      end;
      writeln;
   end;

   readln;
  except
    on E:Exception do
      Writeln(E.Classname, ': ', E.Message);
  end;
end;

begin
   play;
end.

I tested this and it seems to do exactly what you want.

    Post Undeleted by Argalatyr
    Post Deleted by Argalatyr
show/hide this revision's text 1