Java is a general-purpose computer programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible. It is intended to let application developers "write once, run anywhere" (WORA),meaning that compiled Java code can run on all platforms that support Java without the need for recompilation.
Write your first program
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
Read Article
Variables AKA fields
In the Java programming language, the words field and variable are both one and the same thing. Variables are devices that are used to store data, such as a number, or a string of character data.
Read Article
In this video you will learn how to program in the Java programming language!