jompiler/tests/test-local-vars.c

8 lines
No EOL
108 B
C

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