Skip to content

Instantly share code, notes, and snippets.

View 4xMafole's full-sized avatar
🏠
Working from home

4xMafole 4xMafole

🏠
Working from home
View GitHub Profile
@4xMafole
4xMafole / Counter.sol
Created August 12, 2022 16:09
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.8.16+commit.07a7930e.js&optimize=false&runs=200&gist=
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Counter {
//Code goes here...
uint count; //State variable
constructor() public {
count = 0;
}