[ create a new paste ] login | about

Link: http://codepad.org/KQj7Yfq4    [ raw code | output | fork ]

C++, pasted on Nov 25:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	
	
#include <set>
#include <iostream>

int main ()
{
	std::set<unsigned int> MySet;

	std::cout << "Starting ..." << std::endl;

	for (int i=0; i<1000000; ++i)
	{
		MySet.insert(i);
	}
	std::cout << "Finished constructing." << std::endl;
}


Output:
1
2
3
Starting ...

Timeout


Create a new paste based on this one


Comments: