rust range syntax code example
Example: range in rust
// you can create a randge like this:
start..stop // stop will be excluded
//OR like this:
start..=stop // stop will be included
// you can create a randge like this:
start..stop // stop will be excluded
//OR like this:
start..=stop // stop will be included