Section6.60
This commit is contained in:
12
Section6/59.go
Normal file
12
Section6/59.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
for i := 0; i < 10; i++ {
|
||||
if i%2 != 0 {
|
||||
continue
|
||||
}
|
||||
fmt.Println(i)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user