Hello, I have been programming with the same JDK SE since last semester and now all of a sudden I am getting an exception in "main" with just a print statement. I uninstalled the old then reinstalled a newer version of the JDK SE from sun but I am still getting this exception. I also uninstalled and reinstalled my textpad. I have tested old code and they seem to be compiling and executing fine. What could possibly be the issue with this? Any help is appreciated. It is boggeling my mind that I cant even execute a simple print "Hello"!
public class dog
{
public static void main(String[] args)
{ System.out.println("Hello");
}
}