package main import "fmt" func main() { // simpleContinue for i := 1; i <= 10; i = i + 1 { if i%2 == 0 { continue } fmt.Print(i, " ") } }