Skip to content

Instantly share code, notes, and snippets.

@elijahboston
Created October 12, 2023 18:18
Show Gist options
  • Save elijahboston/d4443bb7e64eb453420ec22791c35a95 to your computer and use it in GitHub Desktop.
Save elijahboston/d4443bb7e64eb453420ec22791c35a95 to your computer and use it in GitHub Desktop.
contract
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.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