1
0
mirror of https://github.com/c0de-archive/hacktoberfest-2018.git synced 2025-01-02 16:12:39 +00:00
hacktoberfest-2018/code/HelloHacktoberfest.sol
2018-10-03 22:36:22 +03:00

11 lines
198 B
Solidity

pragma solidity ^0.4.20;
// Hacktober greetings smart contract
contract HelloHacktoberfest {
function Hello() external view returns (string) {
return "Hello Hacktoberfest 2018!";
}
}