if(metres >= 0) return true; else return false;
Can I do this with a single calculation? (ignoring the ternary operator)
return (metres >= 0);
return metres >= 0;
Does
return(meters>=0);
work?