mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
15 lines
130 B
Go
15 lines
130 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
i := 13
|
|
for i > 0 {
|
|
i--
|
|
if i%2 == 0 {
|
|
continue
|
|
}
|
|
fmt.Printf("%d ", i)
|
|
}
|
|
}
|