mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
46c5117b92
Co-authored-by: Max Howell <mxcl@me.com>
8 lines
180 B
Solidity
8 lines
180 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
pragma solidity ^0.8.0;
|
|
contract HelloWorld {
|
|
function helloWorld() external pure returns (string memory) {
|
|
return "Hello, World!";
|
|
}
|
|
}
|