Hello. I have recently downloaded the Eclipse integrated development environment but when I tried to compile a simple Hello world project in the console window I get an error that says:
"
**** Build of configuration Debug for project HelloWorld! ****
Nothing to build for project HelloWorld!"
If it is something wrong with my code here is the code:
How can I fix this? Thanks for the help.
"
**** Build of configuration Debug for project HelloWorld! ****
Nothing to build for project HelloWorld!"
If it is something wrong with my code here is the code:
Code:
#include<iostream>
using namespace std;
int main() {
cout << "Hello, world!";
return 0;
}
Comment