Skip to content

Instantly share code, notes, and snippets.

@amazingandyyy
Last active November 19, 2017 08:15
Show Gist options
  • Save amazingandyyy/a3dd5d0e98ee18894491144540592304 to your computer and use it in GitHub Desktop.
Save amazingandyyy/a3dd5d0e98ee18894491144540592304 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.4;
contract HelloEthSalon {
string message = "I know smart contract testing!!";
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