4VBB7Y7D2UZG2QOTOBMCZ7LLXHOO2NUNDNE65KVMPLPPSM3NNOWQC program Mine;typeTCell = (Empty, Bomb);TField = recordCells: array of TCell;Rows: Integer;Cols: Integer;end;function FieldGet(Field: TField; Row, Col: Integer) : TCell;beginFieldGet := Field.Cells[Row * Field.Cols + Col];end;procedure FieldSet(var Field: TField; Row, Col: Integer; Cell: TCell);beginField.Cells[Row * Field.Cols + Col] := Cell;end;beginWriteLn('hello world')end.