Skip to content

Instantly share code, notes, and snippets.

@aadorian
Created October 31, 2020 20:05
Show Gist options
  • Save aadorian/213942ac9685ba426ff8a56abf8a5777 to your computer and use it in GitHub Desktop.
Save aadorian/213942ac9685ba426ff8a56abf8a5777 to your computer and use it in GitHub Desktop.
pragma solidity ^0.7.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
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