Not Your Ordinary Hello World


/ Published in: C++
Save to your folder(s)

It will spam the hell out of you


Copy this code and paste it in your HTML
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. while(true) {
  7. cout << "Hello World!" << endl;
  8. }
  9. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.