I'am NOT RESPONSABLE IF THIS APP WILL BURN YOUR COMPUTER! USE AT YOUR OWN RISK!
What does it do?
Simple. LAG! On MAC!!!
Features ( =D):
# It gives continiuos alert sounds (in my case submarine beeps) forever until You terminate it.
# Prints Your message(In My case danger!! some $%# and LAG) forever until You terminate it.
# It uses lot of processing power till You terminate it.
# It is not very easy to terminate it.
# If You have selected terminal and try to type something it gets even more annoying( some kind of Laggy sounds)!!
Remove these ads by
Signing UpStep 1You Will need.
ANY PC or MAC (newer then one from 1983)
C++ compiler or IDE
Plain text editor or IDE
Some command line knowlage
Optional:
Good music while Programming.
| « Previous Step | Download PDFView All Steps | Next Step » |











































Sorry, I was trying to be funny. Used to be that emotionally immature would spend hundred of hours flaming each other over issues like this - whether the curly-braces should be on the end of a line, or on the beginning of the next, how to indent, how to format comments, etc,
cout << "1st example" ;
cout << "1st example" ;
cout << "2nd example" ; cout << "2nd example" ;
so putting braces in next line doesnt change anything... right?
please tell me the word "intdent" in other words. I'm not wery good in English....
doonething(x);
} else {
dotheotherthing(x);
}
and the more modern, who'd line up their braces vertically:
{
doonething(x);
}
else
{
dotheotherthing(x);
}
And then there were the Gnubots, who preferred:
{
doonething(x);
}
else
{
dotheotherthing(x);
}
I thought everyone knew that the proper C++ idiom for infinite loops was:
for (;;)
{
}