blob: 7317d62b16952525690d91e31246036c815c2e50 [file] [log] [blame]
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"fmt"
"math/rand"
"time"
)
func main() {
rand.Seed(time.Now().UTC().UnixNano())
digit := rand.Intn(123)
fmt.Printf("What's up %d \n", digit)
}