chapter9-code-4

PHOTO EMBED

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

Saved by @RareSkills

contract ExampleContract {

	uint256 public x;

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