Help for this page

Select Code to Download


  1. or download this
    next if /^;/; #skip comments
    
  2. or download this
    next if /^;/xms;
    
  3. or download this
    local $" = '|';
    
  4. or download this
    use English qw( -no_match_vars );
    
    my $LIST_SEPERATOR = q{|};
    
  5. or download this
    use English qw( -no_match_vars );
    
    {
    local $LIST_SEPARATOR = q{|}; 
    }