00001 #include <iostream.h> 00002 #include "BigInt.H" 00003 00004 main() { 00005 00006 void test(); 00007 00008 test(); 00009 } 00010 00011 void test() { 00012 BigInt b = 1; 00013 for (int i=1; i<1000; ++i) 00014 b = b + i; 00015 } 00016