// SPDX-License-Identifier: MIT // compiler version must be greater than or equal to 0.8.10 and less than 0.9.0 pragma solidity 0.8.7; contract Counter{ // unsnign int uint count; function getCount() public view returns(uint){ return count; } function incrementCount() public{ count ++; } }