mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
- Added missing ones - Reviewed obsoleted ones - Disabled/deleted unnecessary ones - Added support for compile error checking - Added support for run error checking
20 lines
No EOL
247 B
Text
20 lines
No EOL
247 B
Text
include "perf";
|
|
var n := PERF_ARRAY_SIZE;
|
|
|
|
var a,b,c,d,t;
|
|
a := 7;
|
|
b := 2;
|
|
c := 5;
|
|
d := 8;
|
|
while( n )
|
|
t := a-b;
|
|
t := a+c;
|
|
t := c+d;
|
|
d := c+b;
|
|
if (d < c)
|
|
t := a;
|
|
else
|
|
t := c;
|
|
endif
|
|
n := n - 1;
|
|
endwhile |