binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / performance / cout.cpp
CommitLineData
d8394559 1#include <iostream>
2
3#define RUNS 10000000UL
4int main()
5{
6 unsigned long i;
06ab91f0 7 for (i=0;i<RUNS;i++)
8 {
9 std::cout << "stuff\n";
d8394559 10 }
11 return 0;
12}
This page took 0.151503 seconds and 4 git commands to generate.