mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
12 lines
153 B
C++
12 lines
153 B
C++
#include <Core/Core.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
double x = 0;
|
|
for(int i = 0; i < 10000000; i++)
|
|
x += 0.01;
|
|
DUMP(x);
|
|
}
|
|
|