Skip to content

6-CSE/HelloWorld

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hello World !

Maintenance

This repo is meant to contain Hello World programs in various programming languages and their installations (Mainly for Unix based systems).

Procedure to add programs:

Alternatively,

  • Clone to repo to your local machine: git clone https://github.com/<username>/HelloWorld.git (Before committing all files, check if all files are staged atleast. It can be checked using git status).
  • Make a new branch to make PR: git checkout -b <branch_name>
  • Add your programs in correct locations: git add .. (Adds all files here)
  • Add your programs in correct locations: git add . (Adds all files here)
  • Commit your changes: git commit -m "Some_Random_Message". (Committed all files)
  • Finally, you just need to push all the changes by doing: git push origin <branch_name>.