/ Published in: C++
It will spam the hell out of you
Expand |
Embed | Plain Text
#include <iostream> #include <string> using namespace std; int main() { while(true) { cout << "Hello World!" << endl; } }
Comments
Subscribe to comments
You need to login to post a comment.

HAHAHAH LOLOLOL i see what you did there i'll post the pascal equivalent:
program Spamhello;consta:boolean = true;beginrepeatwriteln('Hello World! >:D');until a = falseend.You'd be much better off using '\n' instead of endl - you don't need a buffer flush every line, and all it will do is slow down the program.