5 lines
87 B
Text
5 lines
87 B
Text
bool f(int a) {
|
|
var b = true;
|
|
if (a) { b=true; } else { b=false; }
|
|
return b;
|
|
}
|