go-tour/packages.go
2020-02-04 21:44:36 -06:00

15 lines
221 B
Go

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))
}