CS153/hw6/oatprograms/tc3.oat

6 lines
87 B
Text
Raw Normal View History

bool f(int a) {
var b = true;
if (a) { b=true; } else { b=false; }
return b;
}