rubyx/test/bench/hello.c

10 lines
119 B
C
Raw Normal View History

2015-11-20 19:12:13 +02:00
#include<stdio.h>
int main(void)
{
int counter = 98304 + 1696;
2015-11-20 19:12:13 +02:00
while(counter--) {
printf("Hello there\n");
}
}