Last active
November 19, 2017 08:15
-
-
Save amazingandyyy/a3dd5d0e98ee18894491144540592304 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 = "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