rubyx/test/bench/c/hello.c
2015-11-21 14:22:53 +02:00

10 lines
119 B
C

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