Hello world
// SPDX-License-Identifier: MIT
// compiler version must be greater than or equal to 0.8.26 and less than 0.9.0
contract HelloWorld {
string public greet = "Hello World!";
}
pragma
specifies the compiler version of Solidity.
For more CLICK HERE