If and else in solidity
In this article, I will painstakingly explain what we call if, else and else if in solidity.
The first step is to declare solidity compiler version like this
pragma solidity ^0.5.0;
Now let declare the contract named Michael.
contract Michael{
}
Let...
adisotech.hashnode.dev2 min read