##Perl

   - Mixed use of sigils

        my @array = ( 1, 2, 3 );
        my $array = [ 4, 5, 6 ];

        my $one  = $array[0]; # not @array[0], you would get the length instead
        my $four = $array->[0]; # definitely not $array[0]

        my( $three, $four ) = @array[1,2];
        my( $five,  $six  ) = @$array[1,2]; # coerce to array first

        my $length_a = @array;
        my $length_s = @$array;

        my $ref_a = \@array;
        my $ref_s = $array;

    In `Perl6` it is [written][S09]:

        my @array = ( 1, 2, 3 );
        my $array = [ 4, 5, 6 ];

        my $one  = @array[0];
        my $four = $array[0]; # $array.[0]

        my( $three, $four ) = @array[1,2];
        my( $five,  $six  ) = $array[1,2];

        my $length_a = @array.length;
        my $length_s = $array.length;

        my $ref_a = @array;
        my $ref_s = $array;

   - Lack of true OO

        package my_object;
        # fake constructor
        sub new{ bless {}, $_[0] }
        # fake properties/attributes
        sub var_a{
          my $self = shift @_;
          $self->{'var_a'} = $_[0] if @_;
          $self->{'var_a'}
        }

    In `Perl6` it is [written][S12]:

        class Dog is Mammal {
            has $.name = "fido";
            has $.tail is rw;
            has @.legs;
            has $!brain;
            method doit ($a, $b, $c) { ... }
            ...
        }

   - Poorly designed regex features

        /(?=regexp)/;           # look ahead
        /(?<=fixed-regexp)/;    # look behind
        /(?!regexp)/;           # negative look ahead
        /(?<!fixed-regexp)/;    # negative look behind
        /(?>regexp)/;           # independent sub expression
        /(capture)/;            # simple capture
        /(?:don't capture)/;    # non-capturing group
        /(?<name>regexp)/;      # named capture
        /[A-Z]/;                # character class
        /[^A-Z]/;               # inverted character class
        # '-' would have to be the first or last element in
        # the character class to include it in the match
        # without escaping it
        /(?(condition)yes-regexp)/;
        /(?(condition)yes-regexp|no-regexp)/;
        /\b\s*\b/;              # almost matches Perl6's <ws>
        /(?{ print "hi\n" })/;  # run perl code

    In `Perl6` it is [written][S05]:

        / <?before pattern>  /;   # lookahead
        / <?after pattern>   /;   # lookbehind
        / regexp :: pattern  /;   # backtracking control
        / ( capture )        /;   # simple capture
        / $<name>=[ regexp ] /;   # named capture
        / [ don't capture ]  /;   # non-capturing group
        / <[A..Z]>           /;   # character class
        / <-[A..Z]>          /;   # inverted character class
        # you don't generally use '.' in a character class anyway
        / <ws>               /;   # Smart whitespace match
        / { say 'hi' }       /;   # run perl code



   - Lack of multiple dispatch

        sub f(   int $i ){ ... }  # err
        sub f( float $i ){ ... }  # err
        sub f($){ ... } # occasionally useful

    In `Perl6` it is [written][S06]:

        multi sub f( int $i ){ ... }
        multi sub f( num $i ){ ... }
        multi sub f( $i where $i == 0 ){ ... }
        multi sub f(     $i ){ ... } # everything else


   - Poor Operator overloading

        package my_object;
        use overload
          '+' => \&add,
          ...
        ;

    In `Perl6` it is [written][S13]:

        multi sub infix:<+> (Us $us, Them $them) |
                            (Them $them, Us $us) { ... }


   [S01]: http://dev.perl.org/perl6/doc/design/syn/S01.html
   [S02]: http://dev.perl.org/perl6/doc/design/syn/S02.html
   [S03]: http://dev.perl.org/perl6/doc/design/syn/S03.html
   [S04]: http://dev.perl.org/perl6/doc/design/syn/S04.html
   [S05]: http://dev.perl.org/perl6/doc/design/syn/S05.html
   [S06]: http://dev.perl.org/perl6/doc/design/syn/S06.html
   [S07]: http://dev.perl.org/perl6/doc/design/syn/S07.html
   [S08]: http://dev.perl.org/perl6/doc/design/syn/S08.html
   [S09]: http://dev.perl.org/perl6/doc/design/syn/S09.html
   [S10]: http://dev.perl.org/perl6/doc/design/syn/S10.html
   [S11]: http://dev.perl.org/perl6/doc/design/syn/S11.html
   [S12]: http://dev.perl.org/perl6/doc/design/syn/S12.html
   [S13]: http://dev.perl.org/perl6/doc/design/syn/S13.html
   [S29]: http://dev.perl.org/perl6/doc/design/syn/S29.html