String Type and String Literals in Solidity
Solidity supports both double quotation (") and single quote (') when referencing a string literal. It makes it possible to declare a variable of type String by providing the data type string.
pragma solidity ^0.5.0;
contract SolidityTest {
strin...
yakuzakiawe.hashnode.dev1 min read