Basics of the Java Programming language
NB: Make sure you download the right JDK for the right architecture
int x = 40; String people = "Who exactly?"; Array names[] = ["John", "Andrew", "Peter"]
VS
public static void main(String[] args){
//Your code here
//Where it all begins :)
}
public class CoreFour{ public static void main(String[] args){ //This is one amazing class } }