Skip to content

Instantly share code, notes, and snippets.

@tina1998612
Created July 18, 2021 10:33
Show Gist options
  • Save tina1998612/01d2357394edd568cab17b198d68bcc3 to your computer and use it in GitHub Desktop.
Save tina1998612/01d2357394edd568cab17b198d68bcc3 to your computer and use it in GitHub Desktop.
pragma solidity >=0.7.0 <0.9.0;
contract Storage {
uint256 number;
function store(uint256 num) public {
number = num;
}
function retrieve() public view returns (uint256){
return number;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment