HelloWorld.java – Introduction to Programming in Java

/*
* 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

}
}

 

//