rubyx/test/bench/c/hello.c

11 lines
203 B
C
Raw Normal View History

2015-11-20 18:12:13 +01:00
#include<stdio.h>
int main(void)
{
setbuf(stdout, NULL); /* to make it equivalent to the soml, otherwise it caches */
int counter = 100352 - 352;
2015-11-20 18:12:13 +01:00
while(counter--) {
printf("Hello there\n");
}
}