I just wanted to ask about this tutorial.
I don't get it. The code they write is like this:
intmain() {
    cout << "Hello World!\n";
    return0;
}
Now, I'm really really new to c++, but surely it should be:
int main() {
    std::cout << "Hello World!\n";
    return 0;
}
Or is there some fancy way of writing c++ that I don't understand? The code written in this tutorial won't compile for me.
 
     
     
     
     
     
    