Listing 2: "Hello, world" in draft Standard C++

1)  #include <iostream>     // no .h suffix 
2)
3)  int main()
4)      {
5)      std::cout << "Hello, world\n"; 
6)      return 0;
7)  }
//End of File