Some languages have syntax or function(s) to generate a range of numeric values from a start value, a stop value, and an increment.

The purpose of this task is to select the range syntax/function that would generate at least two increasing numbers when given a stop value more than the start value and a positive increment of less than half the difference. &nbsp; You are then to use that ''same'' syntax/function but with different parameters; and show, here, what would happen.

Use these values if possible:
::::: {| class="wikitable"
!start ||stop ||increment ||Comment
|-
| -2||2||1||Normal
|-
| -2||2||0||Zero increment
|-
| -2||2||-1||Increments away from stop value
|-
| -2||2||10||First increment is beyond stop value
|-
|2||-2||1||Start more than stop: positive increment
|-
|2||2||1||Start equal stop: positive increment
|-
|2||2||-1||Start equal stop: negative increment
|-
|2||2||0||Start equal stop: zero increment
|-
|0||0||0||Start equal stop equal zero: zero increment
|}

;Related tasks:
* &nbsp; [[Loop over multiple arrays simultaneously]]
* &nbsp; [[Loops/Break]]
* &nbsp; [[Loops/Continue]]
* &nbsp; [[Loops/Do-while]]
* &nbsp; [[Loops/Downward for]]
* &nbsp; [[Loops/For]]
* &nbsp; [[Loops/For with a specified step]]
* &nbsp; [[Loops/Foreach]]
* &nbsp; [[Loops/Increment loop index within loop body]]
* &nbsp; [[Loops/Infinite]]
* &nbsp; [[Loops/N plus one half]]
* &nbsp; [[Loops/Nested]]
* &nbsp; [[Loops/While]]
* &nbsp; [[Loops/with multiple ranges]]
* &nbsp; [[Loops/Wrong ranges]]
<br><br>

