Question

I expect it to return [1,2,3,4,5] as in Haskell.

Was it helpful?

Solution

Short answer: the left index is inclusive and the right is exclusive by design.

Long answer: the reason for the short answer is that lists are zero indexed, and we noticed everybody having to write (or forgetting to write) [0..size(myList) - 1]. Now we can write [0..size(myList)] instead. It is not like Haskell, but its like Python.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top