6 lines
74 B
Plaintext
6 lines
74 B
Plaintext
|
void main() {
|
||
|
bool x = true;
|
||
|
if (x) return;
|
||
|
if (!x) return;
|
||
|
}
|