fork download
  1. class Main {
  2. public static void main(String[] args){
  3. double random=Math.random();
  4. if(random>.5){System.out.println("Herp");}
  5. else System.out.println("Derp");
  6. }
  7. }
Success #stdin #stdout 0.08s 380160KB
stdin
Standard input is empty
stdout
Derp