This commit is contained in:
Unknown
2013-06-22 21:29:42 +08:00
parent fac2467441
commit 67be80ca8c
120 changed files with 506 additions and 7307 deletions

View File

@@ -0,0 +1,16 @@
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 }
}