HelloWorld.java – Introduction to Programming in Java
- zendnwar
- July 16, 2012
- Uncategorized
- 0 Comments
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication1;
/**
*
* @author all
*/
public class JavaApplication1 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
System.out.println(“Hello, World”);
// TODO code application logic here
}
}
//