rubyx/test/bench/c/hello.c
Torsten 00bf38a0e6 updating benchmarks
on the new machine, consistent
not rubyx yet
2019-07-23 20:14:28 +03:00

10 lines
114 B
C

#include<stdio.h>
int main(void)
{
int counter = 100000;
while(counter--) {
printf("Hello there\n");
}
}