I just downloaded Netbeans and wrote this hello world program.
package demo;
public class Demo {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
The output is;
run:
Bissmilah
Picked up _JAVA_OPTIONS: -Djava.net.preferIPv4Stack=true
BUILD SUCCESSFUL (total time: 0 seconds)
I don't understand the 3rd line there.
Update:
I complied using javac
and was prompted
Picked up _JAVA_OPTIONS: -Djava.net.preferIPv4Stack=true
So, apparently, its not IDE, or is it?