Created
July 18, 2021 10:36
-
-
Save tina1998612/bd55293f1fc256df7d04ff865c1c5b26 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
stored_data: uint256 | |
@public | |
def set(new_value : uint256): | |
self.stored_data = new_value | |
@public | |
@constant | |
def get() -> uint256: | |
return self.stored_data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment