|
|
@@ -3,13 +3,14 @@ package main
|
|
|
import (
|
|
|
"bufio"
|
|
|
"fmt"
|
|
|
- ".."
|
|
|
+
|
|
|
+ "github.com/mattn/go-colorable"
|
|
|
)
|
|
|
|
|
|
-func main(){
|
|
|
+func main() {
|
|
|
stdOut := bufio.NewWriter(colorable.NewColorableStdout())
|
|
|
|
|
|
- fmt.Fprint(stdOut,"\x1B[3GMove to 3rd Column\n")
|
|
|
- fmt.Fprint(stdOut,"\x1B[1;2HMove to 2nd Column on 1st Line\n")
|
|
|
+ fmt.Fprint(stdOut, "\x1B[3GMove to 3rd Column\n")
|
|
|
+ fmt.Fprint(stdOut, "\x1B[1;2HMove to 2nd Column on 1st Line\n")
|
|
|
stdOut.Flush()
|
|
|
}
|