RosettaCodeData/Task/Loops-For-with-a-specified-step/Go/loops-for-with-a-specified-step.go
2023-07-01 13:44:08 -04:00

3 lines
55 B
Go

for i := 1; i < 10; i += 2 {
fmt.Printf("%d\n", i)
}