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