Figure 3.10 shows the code of an increment and decrement operation in Solidity. It also has a function that takes input, and a function, that fetches out this number once the contract gets executed:
Isn't this code a bit more complex than the hello world contract? Let me walk you through this code. The first line starts with pragma. As you have realized already, it just states which version of Solidity we are about to use. In our case, we are using version 0.4.11. As I type, remix IDE supports versions up to 0.4.16. ...