// SPDX-License-Identifier: MIT /* 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 */ contract HelloWorld { // make accessible string public greet = "Hello World!"; }