Help for this page

Select Code to Download


  1. or download this
    (.5<rand) or die "horribly";
    
  2. or download this
    if (.5<rand) {
        print "Wow\n";
    } else {
        die "horribly";
    }
    
  3. or download this
    die "horribly" if .5 < rand;
    print "Wow\n";