chapter5-code-3

PHOTO EMBED

Thu Mar 30 2023 09:47:47 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

function isNotZero(uint256 x) public pure returns (bool) {
	if (x) { // will not compile
		return true;
	}
	else {
		return false;
	}
}
content_copyCOPY