Go exe program flicker, how to deal with it?

package main
import(
"os"
"fmt"
"io/ioutil"
"./words"
"time"
)

func main(){

fileName:=os.Args[1]
contents,err:=ioutil.ReadFile(fileName)
if(err!=nil){
  fmt.Println(err)
  return 
  }
  text:=string(contents)
  count:=words.CountWords(text);
  fmt.Println("There are %d words in your text.\n",count)
  

   
  time.Sleep(50*time.Second)

}

the exe flicker is generated above, and the final sleep setting does not work. What is the problem

Mar.18,2021

erratically answer nil

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b40701-41554.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b40701-41554.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?