Skip to content

balab2020/learn-programming

Repository files navigation

learn-programming

Learn multiple programming languages with real time use cases hand in hand. You could understand them if you are familar with anyone programming languages.

I assume, you are already familiar with one programming language and may want to learn other one. This repository has markdown files catogorized with different concepts from data types, oops..etc. My plan is create one use case and try to achieve the same with different languages.

If you want to learn any programming language, just start with saying hello to the world. Lets get started with saying "Hello World".

c#

class ConsoleApplication 
{
    static void Main(string[] args)
    {
	Console.WriteLine("Hello World");
    }
}

javascipt

console.log('Hello World');

python

print('Hello World');

java

public class Console {
    public static void main(String[] args) {        
        System.out.println("Hello World");
    }
}

About

What should I do if I want to learn new programming language? The answer was simple, start with known one and write similar with new one. I ended up here.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published