mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 04:25:08 +03:00
4945c1085c
* tidy(solc) * -fPIC * cmake-style * llvm<16? * llvm<15?
8 lines
182 B
Solidity
8 lines
182 B
Solidity
// SPDX-License-Identifier: GPL-3.0
|
|
pragma solidity >=0.5.0;
|
|
|
|
contract HelloWorld {
|
|
function helloWorld() external pure returns (string memory) {
|
|
return "Hello, World!";
|
|
}
|
|
}
|