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