Merge branch 'master' into PotatoPuree/HelloWorld

This commit is contained in:
Luke Oliff
2018-10-03 14:21:57 -07:00
committed by GitHub
2 changed files with 38 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!";
}
}