package main import ( "fmt" "math/rand" "time" ) func main() { seconds := time.Now().Unix() rand.Seed(seconds) target := rand.Intn(100) + 1 fmt.Println("I've chosen a random number berween 1 and 100.")\ fmt.Println("Can you guess it?") }