Why isnt this working

This code come from Bjarne Stroustrup's programming and practice book. Why isnt this working. Im using Visual studio 2013

1
2
3
4
5
6
7
#include "std_lib_facilities.h"
int main() // C++ programs start by executing the function main
{
    cout << "Hello, World!\n"; //output " Hello, World ! "
    keep_window_open(); //wait for a character to be entered
    return 0;
}
Last edited on
Why isnt this working. Im using Visual studio 2013

If you could describe what happens that makes you believe it isn't working, that would be helpful.
false alarm guys, i didnt even had this std_lib_facilities file in my main.cpp directory so everything is fixed :)
Thanks for reading
Last edited on
Topic archived. No new replies allowed.