Skip to content

Instantly share code, notes, and snippets.

@Davidegloh
Last active August 14, 2021 18:19
Show Gist options
  • Save Davidegloh/8b6f7bb19df82612b0872f7bdfecb77a to your computer and use it in GitHub Desktop.
Save Davidegloh/8b6f7bb19df82612b0872f7bdfecb77a to your computer and use it in GitHub Desktop.
[function HelloWorld-Solidity] #helloWorldSolidity
pragma solidity 0.7.5;
contract HelloWorld {
function hello() public pure returns(string memory){
return "Hello World";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment