// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; contract MyContract { function helloWorld() external pure returns (string memory) { return "Hello World"; } }