mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 07:02:11 +08:00
13 lines
141 B
Go
13 lines
141 B
Go
package main
|
|
|
|
func main() {
|
|
for i:=0; i<3; i++ {
|
|
for j:=0; j<10; j++ {
|
|
if j>5 {
|
|
break
|
|
}
|
|
print(j)
|
|
}
|
|
print(" ")
|
|
}
|
|
} |