Created
January 25, 2018 19:32
-
-
Save ashutoshchauhan13/36e94be3c7873084aad1a78047a806e3 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
pragma solidity ^0.4.0; | |
contract HelloWorld { | |
string message = "Hello World"; | |
function get() public constant returns (string) { | |
return message; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment