Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_5/for_loop.go
2015-03-03 12:25:25 -05:00

16 lines
229 B
Go
Executable File

package main
import "fmt"
func main() {
// 1:
for i:=0; i < 15; i++ {
fmt.Printf("The counter is at %d\n", i)
}
// 2:
i := 0
START:
fmt.Printf("The counter is at %d\n", i)
i++
if i < 15 { goto START }
}