Ganesh Sivakumar
Ganesh Sivakumar

Reputation: 147

couldn't declare solidity version in remix

I tried initializing solidity version but I get this error, how to di it right way

paragma solidity ^0.8.14;

error

from solidity:
ParserError: Expected ';' but got '^'
 --> .deps/SimpleStorage.sol:1:18:
  |
1 | paragma solidity ^0.8.14;
  | 

Upvotes: 0

Views: 46

Answers (1)

Niccolò Fant
Niccolò Fant

Reputation: 601

should be pragma instead of paragma

Upvotes: 1

Related Questions