1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pike __REAL_VERSION__
// inherit Tools.Shoot.Test;
constant name="Simple arithmentics (globals)";
#define ITER 3100000
int b,a;
int perform()
{
for (int i=0; i<ITER; i++)
a = a+b;
return ITER;
}