Help for this page

Select Code to Download


  1. or download this
        my $foo = $bar =~ tr/,/,/ + 1;
  2. or download this
        my $foo = my @a = split /,/, $bar;
    
    
    ...
    
        # But why doesn't this work?
        my $foo = () = split /,/, $bar;