package main import ( "fmt" "math/rand" "time" ) func main() { seed := time.Now().UnixNano() rand.Seed(seed) fmt.Println("Seed: ", seed) fmt.Println("My favorite number is", rand.Intn(10)) }