Ultimate Gear War
Join the alien war, prepare your gear and protect your base at all cost!
4.25 / 5.00 13,259 ViewsAlrighty folks, I am attempting to use Visual Eclipse.
I followed the instructions in the notes given to me by a professor at the local community college for programming, I have written the code into a notepad and saved the file as a .cpp
So, here is what I did.
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
return 0;
}
// end main
I try and load the program into visual eclipse like the notes read, and I get errors when trying to run/debug the program. I am following the notes to the letter, is there anything I did wrong?
my super programmer senses tell me it's because you wrote that in a file and are trying to compile it as is without making a project first
At 2/1/13 12:10 PM, Maulkior wrote: I get errors [...] is there anything I did wrong?
When you have errors, something's wrong.
The reason why errors exist is to tell you that something is wrong.
Why don't you post the errors you have?