Skip to content

Instantly share code, notes, and snippets.

@devonwesley
Last active November 20, 2017 23:08
Show Gist options
  • Save devonwesley/84cc8126296bd3c24c189be0ec509b0d to your computer and use it in GitHub Desktop.
Save devonwesley/84cc8126296bd3c24c189be0ec509b0d to your computer and use it in GitHub Desktop.
Simple hello world contract for a blog being written.
pragma solidity ^0.4.18;
contract HelloWorld {
function displayMessage() constant returns (string) {
return "Whale hello there!";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment