Skip to content

Instantly share code, notes, and snippets.

@acoyfellow
Last active November 28, 2021 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acoyfellow/3faf1bd4592182caa4387e43ff4cc42a to your computer and use it in GitHub Desktop.
Save acoyfellow/3faf1bd4592182caa4387e43ff4cc42a to your computer and use it in GitHub Desktop.
Example of a simple smart 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