Skip to content

Instantly share code, notes, and snippets.

@mgyong
Created October 21, 2021 05:31
Show Gist options
  • Save mgyong/2ef09083d047c2174cc6d0ea9fbde432 to your computer and use it in GitHub Desktop.
Save mgyong/2ef09083d047c2174cc6d0ea9fbde432 to your computer and use it in GitHub Desktop.
pragma solidity >=0.7.0;
contract MySmartContract {
function Hello() public view returns (string memory) {
return "Hello World";
}
function Greet(string memory str) public view returns (string memory) {
return str;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment