Merge pull request #116 from skibitsky/master

Add my name :)
This commit is contained in:
Josh Cunningham 2018-10-03 13:53:38 -07:00 committed by GitHub
commit 9d3238afb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -266,6 +266,11 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
- I am a young developer in india - I am a young developer in india
- I'm currently a student! - I'm currently a student!
### Gleb
- Software engineer, Blockchain and .NET developer
- My first hacktoberfest!
- [![github-alt][github-img]](https://github.com/skibitsky)
# H # H
### Hafpaf ### Hafpaf

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!";
}
}