Hi,
I'm having a rather strange problem with the Java compiler.
I'm trying to compile a simple hello world program and I can compile it perfectly within NetBean but when I try to use the commandline javac command I get a error.
The error says the there is something wrong with the parameters for my main.
public class hello {
public static void main(String args[]){
System.out.println("Hello Mugambo");
}
}