ETH_PROJET/contracts/HelloEthSalon.sol

13 lines
244 B
Solidity
Raw Normal View History

2018-02-01 11:52:53 +01:00
pragma solidity ^0.4.4;
contract HelloEthSalon {
string message = "I know smart contract testing!!";
function HelloEthSalon() {
// constructor
}
function GetMessage() returns (string) {
return message;
}
}