Help for this page

Select Code to Download


  1. or download this
    $ perl -e'use strict; use warnings;
    grep { no strict "refs"; }qw(x);
    ...
    grep { 0; no strict "refs"; }qw(x);
    '
    $
    
  2. or download this
    {
        no strict "refs";
        grep {0;} qw(x);
    }