ghost-exodus-draft/src/Counter.sol
Uncle Fatso ef11410879
Some checks failed
CI / Foundry project (push) Has been cancelled
initial commit
Signed-off-by: Uncle Fatso <uncle.fatso@ghostchain.io>
2025-10-07 21:12:32 +03:00

15 lines
258 B
Solidity

// 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++;
}
}