1
0
mirror of https://github.com/golang/go synced 2024-09-23 21:20: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).
// http://en.wikipedia.org/wiki/Peano_axioms
// This program demonstrates the effectiveness
// of the Go runtime's dynamically growing
// stacks for heavily recursive computations.
// This program demonstrates that Go's automatic
// stack management can handle heavily recursive
// computations.
package main