#smart-contracts
Read more stories on Hashnode
Articles with this tag
//SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Counter{ uint count; constructor() public{ count=0; } ...