mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-11-13 17:36:12 +08:00
05.0.md
This commit is contained in:
11
eBook/examples/chapter_5/for5.go
Normal file
11
eBook/examples/chapter_5/for5.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package main
|
||||
|
||||
func main() {
|
||||
for i := 0; i < 10; i++ {
|
||||
if i == 5 {
|
||||
continue
|
||||
}
|
||||
print(i)
|
||||
print(" ")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user