Release overview
Java 1
The beginning: core language + standard library foundations.
Hello, World (applets era)Core libraries (java.lang/java.util)Early AWT
The beginning: core language + standard library foundations.
The beginning: core language + standard library foundations.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, Java 1!");
}
}
The beginning: core language + standard library foundations.
This release is worth studying as a transition point in the Java story because it changed what everyday Java developers could express, build, or ship.