really basic one this folks! i created a simple helloworld.java program and it works ok with no errors but it does not display hello world, just goes to a new prompt? i have tested another wrong script and it throws back errors, so it is compiling ok, any ideas?
this is the code, i am using vista business sp1 and jdk1.6.0_07
/*
* HelloWorld.java
*
* Created on 01/10/2008
*/
class HelloWorld {
public static void main(
String args[]) {
System.out.println("Hello World!");
}
}