Help for this page

Select Code to Download


  1. or download this
    {
      no warnings 'uninitialized';
      print $op if $op =~ /\S/;
    }
    
  2. or download this
    for ($op) {
      print if defined && /\S/;
    }