mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
4945c1085c
* tidy(solc) * -fPIC * cmake-style * llvm<16? * llvm<15?
9 lines
182 B
Solidity
9 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!";
|
|
}
|
|
}
|