import javax.swing.*; public class Hello2 { /* Detta program ger en hälsning från datorn */ public static void main (String[] args) { JOptionPane.showMessageDialog(null,"Hello world! \n" + "This is a message from the computer."); } // main } // Hello2