Last updated 1 year ago
// pragma solidity ^0.8.0; contract HelloNewWorld { function helloWorld() public view returns(string memory) { return("Hello World!"); } }