Here is my problem. I have a contract in solidity :
contract test {
function testfunc(uint _number) external pure returns (bool) {
return _number >= 0;
}
}
Here is example :
This function retuns always false, even if I set a positive number... why ? it's not logic...
Do you have an explanation ?
Thanks for all,
Regards,