2022-12-20 19:13:59 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2023-07-01 08:12:28 +03:00
|
|
|
pragma solidity >=0.5.0;
|
|
|
|
|
2022-12-20 19:13:59 +03:00
|
|
|
contract HelloWorld {
|
|
|
|
function helloWorld() external pure returns (string memory) {
|
|
|
|
return "Hello, World!";
|
|
|
|
}
|
|
|
|
}
|