Skip to content

Instantly share code, notes, and snippets.

@Siimone
Created March 29, 2018 12:23
Show Gist options
  • Save Siimone/22d2e1dd48f95afd70f9368dcf9415ab to your computer and use it in GitHub Desktop.
Save Siimone/22d2e1dd48f95afd70f9368dcf9415ab to your computer and use it in GitHub Desktop.
Decentralized Hello World
pragma solidity ^0.4.17;
contract Hello {
function hello() public pure returns(string) {
return "Hello World!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment