Skip to content

Instantly share code, notes, and snippets.

@MeiyappanKannappa
Created January 10, 2021 10:24
Show Gist options
  • Select an option

  • Save MeiyappanKannappa/b340712f2aa761aade36bf35fefe428e to your computer and use it in GitHub Desktop.

Select an option

Save MeiyappanKannappa/b340712f2aa761aade36bf35fefe428e to your computer and use it in GitHub Desktop.
// My First Smart Contract
pragma solidity >0.5.0;
contract HelloWorld {
function get()public pure returns (string memory){
return 'Hello Contracts';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment