A window with the title “Welcome Home”
Hi, console aplication
package com.example;
import javax.swing.*;
public class Main {
public static void main(String[] args) {
JOptionPane.showMessageDialog(null, null ,"Welcome home",JOptionPane.PLAIN_MESSAGE);
}
}
Comments
Leave a comment