Skip to content

Instantly share code, notes, and snippets.

View DobbyK's full-sized avatar

DobbyK DobbyK

  • United States
View GitHub Profile
@DobbyK
DobbyK / 1_Storage.sol
Created November 11, 2020 16:56
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;