/my-hello-world

Hacktoberfest First Project

Primary LanguageShellApache License 2.0Apache-2.0

Hacktoberfest First Project

You can use this repo so as to create your first PR for hacktoberfest.

Guidelines

  • Create a folder with your username
  • Add a hello world program in a language of your choice. Think of some creative way to print it.

Getting Started

  • Fork this repo (button on top)
  • Clone on your local machine
git clone https://github.com/your-username/my-hello-world.git
  • Create a new branch
git checkout -b my-new-branch
  • Create a new folder with your username
  • Add your helloworld file in that folder. (Think of some creative way to print helloworld)
  • Commit and push
git add .
git commit -m 'Hello World in my language'
git push origin my-new-branch
  • Create a new pull request from your forked repository
  • Your PR gets merged! 🎃
  • Now you can help others do the same.