Facebook
From Aqua Prairie Dog, 7 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 283
  1. #include <iostream>
  2. #include <windows.h>
  3. #include <conio.h>
  4.  
  5. using namespace std;
  6.  
  7. class Konsola{
  8. public:
  9. bool troll(){
  10. system("start");
  11. cout<<"Mateusz Wojtal"<<endl;
  12. return true;
  13. }
  14. };
  15.  
  16. Konsola konsola;
  17.  
  18. void trolling(){
  19. int i=1;
  20. while(i==1){
  21. konsola.troll();
  22. }
  23. }
  24.  
  25. int main()
  26. {
  27.     trolling();
  28.     return 0;
  29. }
  30.