// Copyright(c) 1997 ObjectSpace, Inc.

import COM.objectspace.jgl.*;

/**
 * Sum the values of a range.
 *
 * @see COM.objectspace.jgl.Counting
 * @version 2.0.2
 * @author ObjectSpace, Inc.
 */

public class Counting1
  {
  public static void main( String[] args )
    {
    int intArray[] = { 1, 2, 3, 4, 5 };
    IntIterator begin = IntIterator.begin( intArray );
    IntIterator end = IntIterator.end( intArray );

    Number sum = Counting.accumulate( begin, end, new Integer( 0 ) );

    System.out.println( "Sum = " + sum );
    }
  }
