On 05/26/2018 09:22 PM, ToddAndMargo wrote:
Why the caret in `0..^1000`? Why not `0..1000`?
Figured that one out. The caret means to exclude the
last number, so
`0..^1000`
is the same as
`0..999`
Thank you!
On 05/26/2018 09:22 PM, ToddAndMargo wrote:
Why the caret in `0..^1000`? Why not `0..1000`?
Figured that one out. The caret means to exclude the
last number, so
`0..^1000`
is the same as
`0..999`
Thank you!