pike.git
/
lib
/
modules
/
Tools.pmod
/
Shoot.pmod
/
Arithmetics3.pike
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/lib/modules/Tools.pmod/Shoot.pmod/Arithmetics3.pike:1:
+
#pike __REAL_VERSION__
+
// inherit Tools.Shoot.Test;
-
+
constant name="Simple arithmentics (private global)";
+
+
final private int a,b;
+
+
#define ITER 3100000
+
+
int perform()
+
{
+
for (int i=0; i<ITER; i++)
+
a = a+b;
+
return ITER;
+
}
Newline at end of file added.