Skip to content

Instantly share code, notes, and snippets.

@resba
Created January 25, 2012 15:54
Show Gist options
  • Save resba/1676908 to your computer and use it in GitHub Desktop.
Save resba/1676908 to your computer and use it in GitHub Desktop.
Intro To Java
package com.resbah.assignments.HelloWorld;
/**
* @(#)HelloWorld.java
*
*
* @author Matthew Sowden
* @version 0.0.1-SNAPSHOT 2012/1/25
* @description JavaDoc Stuff; Hello World application
*/
import javax.swing.*;
public class HelloWorld
{
/**
* @ param args the command line arguments
* @ return the main stuff
*/
public static void main(String[] args)
{
String m = "Oh hello";
String h = "Test";
JOptionPane.showMessageDialog(null,m,h,1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment