mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-23 01:01:26 +00:00
16 lines
213 B
C++
16 lines
213 B
C++
int loop(int a)
|
|
{
|
|
int result = 0;
|
|
for (int i = 0; i < a; i++)
|
|
{
|
|
result = result * 31 + i;
|
|
result *= result;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
extern "C" int _start()
|
|
{
|
|
return loop(30);
|
|
}
|