Whenever I run a program in eclipse whose configuration is
Eclipse Java EE IDE for Web Developers.
Version: Indigo Service Release 2
Build id: 20120216-1857
I get a blank console with the following terminated message
Is there something wrong with the build path?
My code is a basic hello world application
import java.lang.*;
public class Connection {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("Hello World");
}
}