RosettaCodeData/Task/Terminal-control-Cursor-positioning/REXX/terminal-control-cursor-positioning.rexx
2023-07-01 13:44:08 -04:00

11 lines
551 B
Rexx

/*REXX program demonstrates moving the cursor position and writing of text to same place*/
call cursor 3,6 /*move the cursor to row 3, column 6. */
say 'Hello' /*write the text at that location. */
call scrwrite 30,50,'Hello.' /*another method, different location. */
call scrwrite 40,60,'Hello.',,,14 /*another method ... in yellow. */
exit 0 /*stick a fork in it, we're all done. */