I've just started learning how to program. I set up VSCode on my Mac and the C/C++ extension. I wrote the helloworld program from Stroustrup's Programming and Principles book. I put the std_lib_facilities.h file in the same folder as my helloworld.cpp file. Still I get the error message: #include errors detected. Please update your includePath. Squiggles are disabled for this translation unit.
Why am I still getting the error? The book says all I need is to have the std_lib_facilities.h.txt file in the same directory as my .cpp program. They're in the same folder, so why am I getting this error?
My code:
#include "std_lib_facilites.h"
int main()
{
cout << "Hello World \n";
return 0;
}