Skip to content

Instantly share code, notes, and snippets.

View Saurabgami977's full-sized avatar
🎯
Focusing

Saurab Gami Saurabgami977

🎯
Focusing
View GitHub Profile
@Saurabgami977
Saurabgami977 / Counter.sol
Created March 18, 2021 17:18
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.7.4+commit.3f05b770.js&optimize=false&runs=200&gist=
pragma solidity ^0.7.4;
contract Counter {
//1, 2, 3...
uint public count = 0;
function incrementCount() public{
count++;
}