Skip to content

Instantly share code, notes, and snippets.

@udenizdemirbilek
Created April 12, 2022 20:56
Show Gist options
  • Save udenizdemirbilek/a55081d4aa77f930bf6f119f1b205b51 to your computer and use it in GitHub Desktop.
Save udenizdemirbilek/a55081d4aa77f930bf6f119f1b205b51 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=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
// Use Solidity version between 0.7 and 0.9
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
// Defining the variable
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function storeNumber(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieveNumber() public view returns (uint256){
return number;
}
}
@udenizdemirbilek
Copy link
Author

udenizdemirbilek commented Apr 12, 2022

Remix IDE UI Screenshot
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment