Help for this page

Select Code to Download


  1. or download this
    grep { ;no strict 'refs'; } qw(x);
    
  2. or download this
    perl -MO=Deparse
    use strict;
    use warnings;
    ...
    use strict 'refs';
    grep {();} 'x';
    - syntax OK
    
  3. or download this
    grep { do{ no strict 'refs'; } } qw(x)