Hacker News new | ask | show | jobs
by tome 1081 days ago
They don't really.

    for [0 .. n-1] $ \i ->
        ...
does pretty much the same thing in Haskell as

    for i in range(0, n):
        ...
does in Python.