Java is a platform independent programming language that is object oriented for reusability. Notes for Java Development Kit (JDK) installation, useful IDEs (interactive development environments), author's tutorial guides, coding examples and internet resources
import java.io.*;
class helloworld {
int myInt; // this is a class variable that is unique to each object
static int myInt2; // this is a class variable shared by all objects of this class
static void main (String [] args) {
// this is the main entry point for this Java application
System.out.println ("Hello, World\n");
myInt2 = 14; // able to access the static int
helloworld myWorld = new helloworld();
myWorld.myInt = 32; // able to access non-static through an object
}
}