Hello I keep getting this error and I can't seem to fix it, I'm new to all this, but I'm trying to get better. So someone said if you changed the solidity to the newest version it would fix the problem, it didn't. So I hope there's a cool guy, who can help me with the problem. Thanks in advance.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol";
contract PecizeCoin is ERC20 {
constructor(uint256 initialSupply) public ERC20 ("PecizeCoin", "PCC"){
_mint(msg.sender,initialSupply);
}
}