##Perl
- Mixed use of sigils
my @array = ( 1, 2, 3 );
my $one = $array[0]; # not @array[0]
- 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'}
}
- Poorly designed regex features
m/(?=look ahead)/;
- Lack of multiple dispatch
sub f( int i ){ ... }
sub f( float i ){ ... }
- Poor Operator overloading
package my_object;
use overload
'+' => \&add,
...
;
I should note that all of these are improved in Perl 6.