You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
323 B
23 lines
323 B
4 years ago
|
int super_fun(bool a, bool b, bool c, bool d)
|
||
|
{
|
||
|
int i = 6;
|
||
|
static if (true)
|
||
|
while (true)
|
||
|
if(b) {
|
||
|
return 1;
|
||
|
}
|
||
|
else if (c) {
|
||
|
while (true)
|
||
|
if(d) {
|
||
|
return 2;
|
||
|
}
|
||
|
else{
|
||
|
while (true)
|
||
|
if(a)
|
||
|
return 3;
|
||
|
}
|
||
|
}
|
||
|
while (d)
|
||
|
return 4;
|
||
|
return 1;
|
||
|
}
|