Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.83 KB | None | 0 0
  1. class asdf{
  2.     public static void main(String args[]){
  3.         //break a for-each style loop
  4.         for(String x:args){
  5.             if (x.equals("-p")) System.out.print("private mode enabled, ");
  6.             else if (x.equals("-st")) System.out.print("stealth mode enabled, ");
  7.             else if (x.equals("-s")) System.out.print("silly balls mode enabled, ");
  8.             else if (x.equals("-franz")) System.out.print("we are going to tweak my nipples in france, ");
  9.             else if (x.equals("-fart")) System.out.print("buuuurp, ");
  10.         }
  11.  
  12.         System.out.println("tweaking complete.");
  13.         System.out.print("LOADING[");
  14.  
  15.         for (int i=0; i<25; i++) {
  16.             System.out.print("*");
  17.             try { Thread.sleep(200); } catch (Exception e) { }
  18.         }
  19.  
  20.         System.out.println("]");
  21.         try { Thread.sleep(500); } catch (Exception e) { }
  22.         System.out.println("LOADING complete! Taking over the world.");
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement