12 lines
130 B
Mathematica
12 lines
130 B
Mathematica
![]() |
#import<stdio.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
#ifdef MESON_TEST
|
||
|
int x = 3;
|
||
|
#endif
|
||
|
|
||
|
printf("x = %d\n", x);
|
||
|
return 0;
|
||
|
}
|