jompiler/tests/test-function-decl.c

10 lines
No EOL
119 B
C

// test-function-decl.c
int add(int a, int b)
{
return a + b;
}
int main(int argc, int argv)
{
return add(1, 2);
}