Skip to content

Instantly share code, notes, and snippets.

@MCarlomagno
Last active October 14, 2021 18:05
Show Gist options
  • Save MCarlomagno/f4ddb0b8f818b038017bd76e86b5545b to your computer and use it in GitHub Desktop.
Save MCarlomagno/f4ddb0b8f818b038017bd76e86b5545b to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0
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