Skip to content

Instantly share code, notes, and snippets.

@MikeRogers0
Created June 16, 2012 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save MikeRogers0/2941952 to your computer and use it in GitHub Desktop.
Save MikeRogers0/2941952 to your computer and use it in GitHub Desktop.
Hello World in Java
package hellowrold;
/**
*
* @author Mike
*/
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
System.out.println("Hello World");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment