I am newb at this so be gentle:
program:
// my first program in C++
#include
using namespace std;
int main ()
{
cout << “Hello World!” << endl ;
return 0;
}
output:
[Finished in 0.2s]
It does not show the ‘Hello World!’ in the sublime text console. I have sublimeClang installed and vintage mode enabled. What Am i doing wrong ?