1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Helper.sol"; contract Counter { uint256 private count; function increment() public { count += 1; } function getCount() public view returns (uint256) { return count; } }