chapter15-code-1

PHOTO EMBED

Thu Mar 30 2023 11:19:51 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

contract ExampleContract {
	function mustNotBeFive(uint256 x) public pure returns (uint256) {
		require(x != 5, "five is not valid");
		return x * 2;
	}
}
content_copyCOPY