Skip to content

Instantly share code, notes, and snippets.

@dendisuhubdy
Created April 11, 2021 06:21
Show Gist options
  • Save dendisuhubdy/191d2c491e60d03a27d61b5d183ca8b3 to your computer and use it in GitHub Desktop.
Save dendisuhubdy/191d2c491e60d03a27d61b5d183ca8b3 to your computer and use it in GitHub Desktop.
contract.sol
contract StoreVar {
uint8 public _myVar;
event MyEvent(uint indexed _var);
function setVar(uint8 _var) public {
_myVar = _var;
emit MyEvent(_var);
}
function getVar() public view returns (uint8) {
return _myVar;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment