M. Carter Posted January 17, 2018 Report Share Posted January 17, 2018 //c++ väg 1, inte jobbig. #include <iostream> using namespace std; int main() { cout << "Hello, World!"; return 0; } //c++ väg 2, jobbig. #include <iostream> int main() { std::cout << "Hello, World!"; return 0; } Eggis, Linus_L, Psykologen Anton and 1 other 3 1 Link to comment Share on other sites More sharing options...
Recommended Posts