Say "Hello, World!" With C++

  • + 1 comment
    #include <iostream>
    using namespace std;
    int main()
    {
    cout<<"Hello, World!";
    return 0;}
    

    Why is it not working?