rubyx/test/bench/c/hello.c

10 lines
114 B
C
Raw Normal View History

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