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