您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

17 行
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. }