Login
7 branches 0 tags
Benjamin Vincent Schulenburg Moved the repl into the executable :repl module 024d30a 3 years ago 878 Commits
nujel / benchmark / for / c.c
#include <stdio.h>

int main(int argc, char *argv[]){
	long long int ret = 0;
	for(int i=0;i<10000000;i++){
		ret += i;
	}
	printf("This results in: %lli\n", ret);
	return 0;
}