this post was submitted on 31 Jul 2024
10 points (85.7% liked)
Rust
5938 readers
1 users here now
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Wormhole
Credits
- The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yes, just give the step as the third number:
{1..10..2}
Wow, that's nice to know. I guess my program will at least make it easier since you can type it in a more humane way, but not essential.
There's also
seq
:This will print the numbers starting from 1, incrementing by 2 until you get to 10.
Seq will only print one sequence, though. The program's focus is discontinuous range. Something like:
1:2:10,20:2:30