Im getting this error when I try to run HelloWorld.class
From this it looks like it's trying to run HelloWorld/class. The program should simply print out HelloWorld!.
package threads;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
Any ideas?
