├── helloworld.txt ├── python └── hello.py ├── Php └── Helloworld.php ├── hacktober.md ├── Java └── hello.java ├── test.c └── README.md /helloworld.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /python/hello.py: -------------------------------------------------------------------------------- 1 | print("hello world") -------------------------------------------------------------------------------- /Php/Helloworld.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | int main(int argc, char const *argv[]) 4 | { 5 | printf("Hello, cosc!!"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to CBIT Hacktoberfest Hackathon 2018 2 | > This Project aims to help you to get started with using Github. You can find a tutorial [here](https://guides.github.com/activities/hello-world/) 3 | 4 | ![poster](https://user-images.githubusercontent.com/22680912/46479049-d8a9c400-c80b-11e8-92a1-89fc10701f4a.jpg) 5 | 6 | # What is Hacktoberfest? 7 | Hacktoberfest is a program by Digital Ocean and Github, where you can easily win a T-Shirt just by making 5 pull requests in the month of October to any open source projects on Github. 8 | 9 | ## Steps to follow :scroll: 10 | 11 | ### 1. Register for Hacktoberfest 12 | You can register from [here](https://hacktoberfest.digitalocean.com). 13 | 14 | ### 2. Fork it :fork_and_knife: 15 | 16 | You can get your own fork/copy of [Hello-world](https://github.com/cbitosc/Hacktoberfest-Hackathon-Hello-World) by using the Fork button or clicking [this](https://github.com/cbitosc/Hacktoberfest-Hackathon-Hello-World/new/master?readme=1#fork-destination-box). 17 | 18 | [![Fork Button](https://help.github.com/assets/images/help/repository/fork_button.jpg)](https://github.com/cbitosc/Hacktoberfest-Hackathon-Hello-World) 19 | 20 | ### 3. Add a Program in any Language you like :rabbit2: 21 | Once you have forked the repo, add your program in the language folder in 22 | main branch, if there is no language folder, make one, then add into it. 23 | You can take a look to the [Programming Language List](https://en.wikipedia.org/wiki/List_of_programming_languages) in Wikipedia to create a new one HelloWorld ! 24 | 25 | ### 4. Ready, Steady, Go... :turtle: :rabbit2: 26 | 27 | Once you have completed these steps, you are ready to start contributing 28 | by checking our `Help Wanted` issues and creating [pull requests](https://github.com/cbitosc/Hacktoberfest-Hackathon-Hello-World/pulls). 29 | 30 | ### 5. Give this Project a Star :star: 31 | 32 | If you liked working on this project, please share this project as much 33 | as you can and star this project to help as many people in opensource as you can. 34 | 35 | :tada: :confetti_ball: :smiley: _**Happy Contributing**_ :smiley: :confetti_ball: :tada: 36 | --------------------------------------------------------------------------------