Skip to content

Instantly share code, notes, and snippets.

@renorzr
Created November 26, 2021 08:20
Show Gist options
  • Select an option

  • Save renorzr/2cc8059ff54b99f3f98678e0a7b61d23 to your computer and use it in GitHub Desktop.

Select an option

Save renorzr/2cc8059ff54b99f3f98678e0a7b61d23 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=undefined&optimize=false&runs=200&gist=
// 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