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.
- Main.cpp
#include<iostream> using namespace std; int main() { cout<<"Hello World!"; return 0; }
- Main.js
console.log("Hello World!");
- Main.cs
using System; public class MainProgram { public static void Main(string[] args) { Console.WriteLine("Hello Mono World"); } }
- Main.c
#include <stdio.h> int main() { printf("Hello world"); return 0; }
- Main.java
public class Main { public static void main(String[] args) { System.out.println("Hello, World!"); } }
- Main.php
<?php echo "Hello, world!"; ?>
- Main.py
print("Hello world")