Files
scc/ccompiler/middleend/tests/test_file.c

8 lines
86 B
C

int add(int a, int b) {
return a + b;
}
int main(void) {
return add(1, 2);
}