$ cat cr.go
package main

import (
	"fmt"
)

func main() {
	fmt.Printf("first")
	fmt.Printf("\r")
	fmt.Printf("Sec")
}
$ go run cr.go
Sec$

没有问题。