Skip to content

Instantly share code, notes, and snippets.

@amazingandyyy
Last active November 19, 2017 07:10
Show Gist options
  • Save amazingandyyy/3478a3e5a0c6a4f52d4f41a3756647ed to your computer and use it in GitHub Desktop.
Save amazingandyyy/3478a3e5a0c6a4f52d4f41a3756647ed to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.4;
contract HelloEthSalon {
string message = "Hello Ethereum Salon!";
function HelloEthSalon() {
// constructor
}
function GetMessage() returns (string) {
return message;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment