Solidity "Hello World"

eluconsmidar - May 8 - - Dev Community

pragma specifies the compiler version of Solidity.

// SPDX-License-Identifier: MIT
// compiler version must be greater than or equal to 0.8.24 and less than 0.9.0
pragma solidity ^0.8.24;

contract HelloWorld {
     string public greet = "Hello World!";
}
Enter fullscreen mode Exit fullscreen mode
. . . . . . .