Created
January 10, 2021 10:24
-
-
Save MeiyappanKannappa/b340712f2aa761aade36bf35fefe428e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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