I want to create a list of integers from 1 to n
. I can do this in Python using range(1, n+1)
, and in Haskell using: take n (iterate (1+) 1)
.
What is the right OCaml idiom for this?
I want to create a list of integers from 1 to n
. I can do this in Python using range(1, n+1)
, and in Haskell using: take n (iterate (1+) 1)
.
What is the right OCaml idiom for this?