mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-11 19:41:43 +08:00
16 lines
170 B
Go
16 lines
170 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
var i int = 5
|
|
|
|
for {
|
|
i = i - 1
|
|
fmt.Printf("The variable i is now: %d\n", i)
|
|
if i < 0 {
|
|
break
|
|
}
|
|
}
|
|
}
|