Skip to content

Instantly share code, notes, and snippets.

View knowself's full-sized avatar

Joe Terry knowself

View GitHub Profile
@knowself
knowself / 1_Storage.sol
Created September 3, 2020 17:12
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.6.6+commit.6c089d02.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.7.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;