Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created May 8, 2014 08:21
Show Gist options
  • Save z-------------/4881c268ae085ff33c2c to your computer and use it in GitHub Desktop.
Save z-------------/4881c268ae085ff33c2c to your computer and use it in GitHub Desktop.
import java.util.*;
public class Androo {
public static void main(String []args){
String[] phrases = {"WERE U BORN IN A BARN???", "GET SUM WERK DUN", "Useless scrub...", "Stop jacking off", "I'LL BUST YOUR CHOPS", "R U BORN IN A WATER PARK??", "Stop fapping around", "R U BORN IN A BARN???", "LATER, SHIZLORD", "OI!!"};
String chosenPhrase = phrases[new Random().nextInt(phrases.length)];
System.out.println(chosenPhrase);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment