package main import ( "fmt" "math/rand" ) func main() { fmt.Println("Random number ", rand.Int31n(10)) }