mirror of
https://github.com/c0de-archive/hacktoberfest-2018.git
synced 2024-11-01 12:17:47 +00:00
11 lines
198 B
Solidity
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!";
|
|
}
|
|
|
|
}
|