ETH_PROJET/contracts/HelloEthSalon.sol
2018-02-01 11:52:53 +01:00

13 lines
No EOL
244 B
Solidity

pragma solidity ^0.4.4;
contract HelloEthSalon {
string message = "I know smart contract testing!!";
function HelloEthSalon() {
// constructor
}
function GetMessage() returns (string) {
return message;
}
}