b8f97e9f9a0328eed751bae0eee39e96484f09b5
[svn/Cll1h/.git] / demos / performance / cout2.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 std::cout << "stuff1" << " " << "stuff2" << std::endl;
9 }
10 return 0;
11 }
This page took 0.272688 seconds and 4 git commands to generate.