import javax.swing.*; // provides access to the JOptionPane class class HelloWorld { public static void main(String[] args) { JOptionPane.showMessageDialog(null, "Hello, World!"); System.exit(0); } }