Create HelloHacktoberfest.sol

This commit is contained in:
Gleb Skibitsky 2018-10-03 22:36:22 +03:00 committed by GitHub
parent 7f7e65a318
commit ab5f357ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
pragma solidity ^0.4.20;
// Hacktober greetings smart contract
contract HelloHacktoberfest {
function Hello() external view returns (string) {
return "Hello Hacktoberfest 2018!";
}
}