Skip to content

Instantly share code, notes, and snippets.

@ashutoshchauhan13
Created January 25, 2018 19:32
Show Gist options
  • Save ashutoshchauhan13/36e94be3c7873084aad1a78047a806e3 to your computer and use it in GitHub Desktop.
Save ashutoshchauhan13/36e94be3c7873084aad1a78047a806e3 to your computer and use it in GitHub Desktop.
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