Personal Notes-Basics of Solidity-1.0.1
Importing Contracts Into Other Contracts.
Simple Storage
//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
//SimpleStora...
aaronr2020.hashnode.dev3 min read