On Fri, 20 Feb 2004, Geoff Teale wrote: > a- is you office big enough. > b- is your office far from Three Bridges station. > > bool > can_have_moot_at_Marks(bool a, bool b){ > if (a && !b) { > return true; > } else { > return false; > } > } What's wrong with just return (a && !b) ?