jompiler/tests/test-multistatement.c

8 lines
No EOL
112 B
C

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