rubyx/test/bench/hello.c
2015-11-20 19:12:13 +02:00

10 lines
114 B
C

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