rubyx/test/bench/null.c
Torsten Ruger 96972dab29 thats most of the benchmarking
strange about the puts in soml, hard to see where a factor of 10 would
come from
2015-11-20 23:51:58 +02:00

10 lines
114 B
C

#include<stdio.h>
int main(void)
{
int counter = 98304 + 1696;
while(counter--) {
counter = counter;
}
}