Trying to learn C++ and starting by doing the basic Hello World program.
But it doesn't run, it's very basic obviously:
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
I'm using Code Lite as my IDE and ive trying running with with both the GNU...