main.go 253 B

123456789101112131415
  1. package main
  2. import (
  3. "bufio"
  4. "fmt"
  5. ".."
  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. }