RosettaCodeData/Task/Terminal-control-Positional-read/REXX/terminal-control-positional-read.rexx
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

9 lines
527 B
Rexx

/*REXX program demonstrates reading a char at specific screen location.*/
row = 6 /*point to row six. */
col = 3 /*point to column three. */
howMany = 1 /*read one character. */
stuff = scrRead(row, col, howMany) /*this'll do it. */
other = scrRead(40, 6, 1) /*same thing, but for row forty. */
/*stick a fork in it, we're done.*/