Help for this page

Select Code to Download


  1. or download this
    print ("\033[2;5H");
    
  2. or download this
    $columns = 5;
    print ("\033[2;${columns}H");
    
  3. or download this
    $a = 5;
    print ("\033[3;${a}HStart Here $a");
    print ("\033[4;${$a+=10}HEnd Here $a\n");
    
  4. or download this
        Start Here 4
    End Here 14