Hello guys, in this article, I will be showing us how to increment and decrement in solidity.
First step is to declare the solidity compiler version followed by contract with name Michael.
pragma solidity ^0.5.0;
contract Michael{
}
Next step is to ...