chapter9-code-3

PHOTO EMBED

Thu Mar 30 2023 10:00:13 GMT+0000 (Coordinated Universal Time)

Saved by @RareSkills

contract ExampleContract {

	uint256 x;

	function setX(uint256 newValue) public {
		x = newValue;
	}
	
	function getX() public view returns (uint256) {
		return x;
	}
}
content_copyCOPY