mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 05:33:04 +08:00
10 lines
119 B
Go
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)
|
|
}
|
|
}
|