Oop Visual Contoh 1: Menampilkan Visual Messagedialog
Oop Visual Contoh 1: Menampilkan Visual Messagedialog
import javax.swing.*; public class WelcomeSToy { /** Creates a new instance of HelloWorldSToy */ public WelcomeSToy() { } public static void main(String args[]) { JOptionPane.showMessageDialog(null,"Hello World!"); System.exit(0); } }