I started using eclipse for the first time(earlier I always used NetBeans).
The problem is that not even a simple "hello world " program is working in it.
Path is set and everything is working from the command line but when I run any particular project in eclipse the console just shows:
terminated theclassname [Java Applcation] c:\program files\java\jre1.8.0_45\bin\javaw.eve
Everything is working fine from the command line, please tell me what seems to be the problem?
When I ran eclipse a couple of hours ago, everything was working fine but now it is consistently showing this problem.
Edit:
here is the code, as per the request in the comments:
public class test {
public static void main(String args[]) {
System.out.print("Hello!!");
}
}
But the problem is not about this program, the problem is nothing is working no program is working. I just stated "a simple hello world" program as an example!