Comment nettoyer le terminal Golang

cmd := exec.Command("clear")
cmd.Stdout = os.Stdout
cmd.Run()
Restu Wahyu Saputra