Files
the-way-to-go_ZH_CN/eBook/examples/chapter_5/for1.go
2013-06-22 21:29:42 +08:00

10 lines
119 B
Go

package main
import "fmt"
func main() {
for i := 0; i < 5; i++ {
fmt.Printf("This is the %d iteration\n", i)
}
}