mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-04 21:43:42 +00:00
update code
This commit is contained in:
parent
2f1470dad2
commit
e6a5cd63e6
@ -33,6 +33,10 @@ const (
|
||||
)
|
||||
|
||||
func main() {
|
||||
// The sequence of images is deterministic unless we seed
|
||||
// the pseudo-random number generator using the current time.
|
||||
// Thanks to Randall McPherson for pointing out the omission.
|
||||
rand.Seed(time.Now().UTC().UnixNano())
|
||||
lissajous(os.Stdout)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user