public class Intro {
public static void main(String[] args) {
System.out.println("Welcome to the JDK!");
}
} > javac Intro.java > java Intro
Welcome to the JDK! > jar --create --file Intro.jar Intro.class > java -cp Intro.jar Intro