Created
April 11, 2021 06:21
-
-
Save dendisuhubdy/191d2c491e60d03a27d61b5d183ca8b3 to your computer and use it in GitHub Desktop.
contract.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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