Show More
Commit Description:
added rakefile and .gitignore for spec, removed 'language hack' warning; compile script takes also 'cpp'
Commit Description:
added rakefile and .gitignore for spec, removed 'language hack' warning; compile script takes also 'cpp'
File last commit:
Show/Diff file:
Action:
test/data/test1_correct.c | 13 lines | 125 B | text/x-c | CLexer |
/*
LANG: C
*/
#include <stdio.h>
int main()
{
int a,b,r;
r = scanf("%d %d",&a,&b);
printf("%d\n",a+b);
return 0;
}