mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
16 lines
228 B
C++
16 lines
228 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define N 1000000
|
|
#define SZ 100
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
RTIMING("Time");
|
|
for(int i = 0; i < N; i++) {
|
|
Vector<int> v;
|
|
for(int n = 0; n < SZ; n++)
|
|
v.Add(n);
|
|
}
|
|
}
|