mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-28 09:09:07 +00:00
update code
This commit is contained in:
parent
2f1470dad2
commit
e6a5cd63e6
@ -33,6 +33,10 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
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)
|
lissajous(os.Stdout)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user