package test
public class test{
public static void main (String args[]) throws Exception{
System.out.println("testing");
}
}
I compile with the following command
javac test.java -Xlint -g
I execute with the following command
java test
Which gives me the error
Error: Could not find or load main class test
Now I strongly suspect something weird is going on with my java as eclipse is also crashing whatever I do.