lineAt method

String lineAt(
  1. int xAt,
  2. int yLine
)

Implementation

String lineAt(int xAt, int yLine){
  return data[yLine][xAt];
}