jompiler/tests/test-simple-arithmetic.c

8 lines
No EOL
117 B
C

// test-simple-arithmetic.c
int main(int argc, int argv)
{
int a = 10;
int b = 20;
int c = a + b;
return c;
}