jompiler/tests/test-compound.c

9 lines
No EOL
133 B
C

// test-compound.c
int main(int argc, int argv)
{
int a = 5;
int b = 3;
int c = 2;
int result = a + b * c;
return result;
}