mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
9 lines
125 B
C++
9 lines
125 B
C++
int main() {
|
|
int rc;
|
|
FILE *f;
|
|
int *x = new int[32];
|
|
x[0] = 2;
|
|
x[1] = 2;
|
|
x[2] = x[0] + x[1];
|
|
return x[2] - 4;
|
|
}
|