Summing the first 1000 integers

Here is an example of developing a program to solve a very simple problem:

``Compute the sum of the first 1000 integers''

Our overall approach for solving it:

Note Haskell solution:

    sum [1..1000]

Index