Skip to content

Instantly share code, notes, and snippets.

@dangerousfood
Last active February 15, 2019 16:16
Show Gist options
  • Save dangerousfood/13c749c375bc2de00bacc836efd1e533 to your computer and use it in GitHub Desktop.
Save dangerousfood/13c749c375bc2de00bacc836efd1e533 to your computer and use it in GitHub Desktop.
pragma solidity ^0.5.0;
contract SimpleStorage {
mapping(address => uint256) public favoriteNumbers;
function setFavorite(uint x) public {
favoriteNumbers[msg.sender] = x;
}
function getFavorite() public view returns (uint256) {
return favoriteNumbers[msg.sender];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment