Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

17 lignes
284 B

  1. package main
  2. import (
  3. "bufio"
  4. "fmt"
  5. "github.com/mattn/go-colorable"
  6. )
  7. func main() {
  8. stdOut := bufio.NewWriter(colorable.NewColorableStdout())
  9. fmt.Fprint(stdOut, "\x1B[3GMove to 3rd Column\n")
  10. fmt.Fprint(stdOut, "\x1B[1;2HMove to 2nd Column on 1st Line\n")
  11. stdOut.Flush()
  12. }