Skip to content

Instantly share code, notes, and snippets.

@AbhinavXT
Created August 12, 2023 12:15
Show Gist options
  • Save AbhinavXT/1ffd74bdfe22e76cc8bff59d8bbe1db5 to your computer and use it in GitHub Desktop.
Save AbhinavXT/1ffd74bdfe22e76cc8bff59d8bbe1db5 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;
contract Counter {
uint256 public number;
function setNumber(uint256 newNumber) public {
number = newNumber;
}
function increment() public {
number++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment