An open API service indexing awesome lists of open source software.

https://github.com/tebogoyungmercykay/git_and_github_beginer_guide-repo_init

This repository Is a guide for coding beginners
https://github.com/tebogoyungmercykay/git_and_github_beginer_guide-repo_init

creating-a-readme creating-a-repository deleting-a-repository example-commit first-programming-project markdown pulling-commits-from-master pushing-an-existing-repository unfork-a-repository version-control

Last synced: 3 months ago
JSON representation

This repository Is a guide for coding beginners

Awesome Lists containing this project

README

        

# Beginer's Guide For Your First Repository
---

This repository Is a guide for coding beginners

---

The repository has almost all the necessary infomation about repositories on Github. Information includes cloning, forking, deleting repositories and furthermore.

---

You need to have Git installed in order to be able to follow through the guide.

### Installing Git: https://www.youtube.com/watch?v=4xqVv2lTo40&ab_channel=TravelsCode
---
---
##### FIRST EVER PROGRAMME

- Main.cpp
```cpp
#include
using namespace std;
int main()
{
cout<<"Hello World!";
return 0;
}
- Main.js
```js
console.log("Hello World!");
- Main.cs
```cs
using System;
public class MainProgram
{
public static void Main(string[] args)
{
Console.WriteLine("Hello Mono World");
}
}
- Main.c
```c
#include
int main() {
printf("Hello world");
return 0;
}
- Main.java
```java
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
- Main.php
```php

- Main.py
```python
print("Hello world")