Hello world med swing
Ett “hello world” program med swing. det här programet skriver ut “hello world” i en dialogruta istället för i text.
import javax.swing.*; //importerar swing som behövs för att komma åt dialogrutan.
public class Hello
{
public static void main (String[] arg)
{
JOptionPane.showMessageDialog(null, “Hello World”); //Skrifer ut hello world
System.exit(0); //anslutar programmet
}
}