Last active
November 19, 2017 07:10
-
-
Save amazingandyyy/3478a3e5a0c6a4f52d4f41a3756647ed to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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