Skip to content

Instantly share code, notes, and snippets.

@rahulpower2012
rahulpower2012 / resume.json
Last active March 5, 2023 05:33
JSON Resume
{
"meta": {
"theme": "Kendall"
},
"basics": {
"name": "Rahul Powar",
"label": "Software Engineer",
"email": "rahulpowar@gmail.com",
"phone": "+91 7083127085",
"location": {
@rahulpower2012
rahulpower2012 / 1_Storage.sol
Created August 1, 2020 16:37
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.4.17+commit.bdeb9e52.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.7.0;
/**
* @title Storage
* @dev Store & retreive value in a variable
*/
contract Storage {
uint256 number;