mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 04:25:08 +03:00
46c5117b92
Co-authored-by: Max Howell <mxcl@me.com>
7 lines
180 B
Solidity
7 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!";
|
|
}
|
|
}
|