Personal Notes-Basics of Solidity-1.0.0
//SPDX-License-Identifier: MIT
pragma solidity 0.8.7; //pragma mentions the version of solidity this contract is using.
contract SimpleStorage {
//contract is a keyword
//SimpleStorage is the name of the contract
//common datatype
...
aaronr2020.hashnode.dev2 min read