From this interesting blog post:
Where in C++ we might say:
for (int x = 0; x < 10; x++) f(x)
in Haskell we would say:
map f (take (10 [0..]))
Which is sadly all too often true. I'm definitely one of the ones who will tend not to find the much happier
map f [0..9]
(B)