Is there a difference between these two statements inside a function?
bool returnValue = true; // Code that does something return(returnValue);
I assume boo is a typo, and you are asking whether there is a difference between
boo
return expr;
and
return(expr);
The answer is no.