Created
January 25, 2012 15:54
-
-
Save resba/1676908 to your computer and use it in GitHub Desktop.
Intro To Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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