1
0
mirror of https://github.com/golang/go synced 2024-09-23 23:10:13 -06:00

doc/play: revise peano.go comment again.

Change-Id: I412358e99301d1c9603960fd34601dae60fca3cb
Reviewed-on: https://go-review.googlesource.com/1400
Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
David Symonds 2014-12-12 11:38:07 +11:00
parent 5de497bc6f
commit afc2890291

View File

@ -3,9 +3,9 @@
// (the nodes are the data). // (the nodes are the data).
// http://en.wikipedia.org/wiki/Peano_axioms // http://en.wikipedia.org/wiki/Peano_axioms
// This program demonstrates the effectiveness // This program demonstrates that Go's automatic
// of the Go runtime's dynamically growing // stack management can handle heavily recursive
// stacks for heavily recursive computations. // computations.
package main package main