We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Lately, I've noticed how python loops with range are extremely simple and powerful. What if we expand capabilities of using go loops with range?
for v := range 25 {} // no key here can be assigned It goes from 0 to 25. for v := range 1:25 {} It goes from 1 to 25.
for v := range 25 {} // no key here can be assigned
for v := range 1:25 {}