2
3
4
/* Compiler version must be greater than or equal to 0.6.10 and less than 0.7.0 */
pragma solidity ^0.6.10;

Hello, World.

The canonical hello world example

7
contract HelloWorld {

make accessible

9
10
    string public greet = "Hello World!";
}