Terminal control/Cursor movement: Difference between revisions

Terminal control/Cursor movement in FreeBASIC
(Terminal control/Cursor movement in FreeBASIC)
Line 699:
( move the cursor to the bottom right corner of the screen) 80 24 <CUP>
</syntaxhighlight>
 
=={{header|FreeBASIC}}==
<syntaxhighlight lang="vb">Dim As Integer w, h
 
Screeninfo w, h
'move left
Locate , Pos(0) - 1
'move right
Locate , Pos(0) + 1
'move up
Locate Csrlin - 1
'move down
Locate Csrlin + 1
'beginning of line
Locate , 1
'end of line
Locate , h
'top left corner
Locate 1, 1
'bottom right corner
Locate w, h</syntaxhighlight>
 
=={{header|Go}}==
2,130

edits