rubyx/test/bench/hello.c

10 lines
114 B
C
Raw Normal View History

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