diff --git a/README.md b/README.md index bc53ec0..fd2af1b 100644 --- a/README.md +++ b/README.md @@ -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'm currently a student! +### Gleb +- Software engineer, Blockchain and .NET developer +- My first hacktoberfest! +- [![github-alt][github-img]](https://github.com/skibitsky) + # H ### Hafpaf diff --git a/code/HelloHacktoberfest.sol b/code/HelloHacktoberfest.sol new file mode 100644 index 0000000..bde6431 --- /dev/null +++ b/code/HelloHacktoberfest.sol @@ -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!"; + } + +}