13 lines
244 B
Solidity
13 lines
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;
|
||
|
}
|
||
|
}
|