$FUNCNAME$
  SETPOS()
$CATEGORY$
  TERMINAL/IO
$SUMMARY$
   Move the cursor to a new position
$LANG_RU$
       .
$SYNTAX$
     SETPOS(<nRow>, <nCol>) --> <nRow>
$LANG_RU$
     SETPOS(< >, < >) --> NIL
$ARGUMENTS$
     <nRow> and <nCol> define the new screen position of the cursor.
     These values may range from 0, 0 to MAXROW(), MAXCOL().
$LANG_RU$
     < >  < >     
     .        0, 0 
     MAXROW(), MAXCOL().
$RETURNS$
     SETPOS() always returns <nRow>
$LANG_RU$
     SETPOS()   NIL.
$DESCRIPTION$
     SETPOS() is an environment function that moves the cursor to a new
     position on the screen.  After the cursor is positioned, ROW() and COL()
     are updated accordingly.  To control the shape and visibility of the
     cursor, use the SETCURSOR() function.
$LANG_RU$
     SETPOS()   ,    
        .  ,    ,
        ROW()  COL().  
        ,   SETCURSOR().
$EXAMPLES$
       This example moves the cursor to a new position then displays
	a string to the screen using a console command, ??:

	SETPOS(1, 1)
	?? "Hello world"
$LANG_RU$
             
              
         ??:

       SETPOS( 1, 1)
       ?? " !"
$SEEALSO$
  ROW(),SETCURSOR(),COL()
$END$
