I'm having one quick problem with java... I can compile my programs fine, but when I run them with the java interpreter, it gives me the message: Exception in thread "main" java.lang.NoClassDefFoundError: Java
here's the source...
public class Blah {
public static void main( String args[] )
{
System.out.println("Blah"
}
}
What's going on here?
here's the source...
public class Blah {
public static void main( String args[] )
{
System.out.println("Blah"
}
}
What's going on here?