5 lines
90 B
Plaintext
5 lines
90 B
Plaintext
int main() {
|
|
int x = if true { 3; } else { error("I shouldn't be here!"); };
|
|
x + 4;
|
|
}
|