chapter11-code-1

PHOTO EMBED

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

Saved by @RareSkills

contract ExampleContract {

	mapping(uint256 => uint256) public myMapping;

	function setMapping(uint256 key, uint256 value) public {
		myMapping[key] = value;
	}

	function getValue(uint256 key) public view returns (uint256) {
		return myMapping[key];
	}
}
content_copyCOPY