Solidity-Variables
1. Pragma
The first line is a pragma directive which tells that the source code is written for the Solidity version
eg.
pragma solidity >= 0.5.0 < 0.9.0;
2. Contract
A Solidity contract is a collection of code (its functions) and data (its state) th...
onerush.hashnode.dev1 min read