You are on page 1of 1

HelloBox

// 1,000_naymes; Created for ICT 352


//Hello World Box program; ICT 352

import javax.swing.JOptionPane;
public class HelloBox
{
public static void main(String[] args)
{
JOptionPane.showMessageDialog(null,
"Hello World", "",JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
}
}

Page 1

You might also like