cd47ab288d5893d507e03d90370124b00e704ea2
[svn/Cll1h/.git] / demos / performance / cout.cpp
1 #include <iostream>
2
3 #define RUNS 10000000UL
4 int main()
5 {
6 unsigned long i;
7 for (i=0;i<RUNS;i++)
8 {
9 std::cout << "stuff\n";
10 }
11 return 0;
12 }
This page took 0.347206 seconds and 4 git commands to generate.