Function
Edit
Sets the position of the cursor on the screen, both for user input and for the print() and write() commands
Syntax
Edit
term.setCursorPos(x,y)
where x is how many spaces across the page you wish to place the cursor
and y is how many lines down the page you wish to place the cursor
Uses
Edit
This line is often placed after
term.clear()
a command that clears the screen yet quite often leaves the cursor halfway down the page.
it is also useful for indenting text and inserting text.