Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    print("1\n");
    
  2. or download this
    whatever  / 25 ; # / ; die "this dies!";
    
  3. or download this
    whatever() / 25;
    
  4. or download this
    whatever($_ =~ m{ 25 ; # });
    die "this dies!";
    
  5. or download this
    BEGIN {
      *sum      = sub ($$) { (shift) + (shift) };
      *whatever = (sum(2,2) == 5) ? sub ($) {} : sub () {};
    }