|
10
|
|
|
For example none of these are the same: $array[0] # First element of @array@array[0] # Slice of only the First element of @array%array[0] # Syntax error$array->[0] # First element of an array referenced by $array@array->[0] # Deprecated first element of @array%array->[0] # Invalid reference$array{0} # Element of %array referenced by string '0'@array{0} # Slice of only one element of %array referenced by string '0'%array{0} # Syntax error$array->{0} # Element of a hash referenced by $array@array->{0} # Invalid reference%array->{0} # Deprecated Element of %array referenced by string '0'
|
|
|
|
9
|
|
|
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:
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:
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:
/ <?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:
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:
multi sub infix:<+> (Us $us, Them $them) |
(Them $them, Us $us) { ... }
|
|
|
|
8
|
|
edited Dec 21 '08 at 1:29
|
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:
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:
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
/(?:don't capture)/; # non-capturing group
/(?<name>regexp)/; # named capture
/[A-Z]/; # character class
# '-' would have to be the first or last element in
# the character class to include it in the match
/(?(condition)yes-regexp)/;
/(?(condition)yes-regexp|no-regexp)/;
In Perl6 it is written:
/ <?before pattern> /; # lookahead
/ <?after pattern> /; # lookbehind
/ regexp :: pattern /; # backtracking control
/ $<name>=[ regexp ] /; # named capture
/ [ don't capture ] /; # non-capturing group
/ <[A..Z]> /; # character class
# you don't generally use '.' in a character class anyway
/ [ @<words>=[\w+]\s+ ]* /;
Lack of multiple dispatch
sub f( int $i ){ ... } # err
sub f( float $i ){ ... } # err
sub f($){ ... } # occasionally useful
In Perl6 it is written:
multi sub f( int $i ){ ... }
multi sub f( float num $i ){ ... }
multi sub f( $i ){ ... } # everything else
Poor Operator overloading
package my_object;
use overload
'+' => \&add,
...
;
In Perl6 it is written:
multi sub infix:<+> (Us $us, Them $them) |
(Them $them, Us $us) { ... }
|
|
|
|
7
|
|
edited Dec 21 '08 at 0:00
|
array[0], you would get the length insteadmy $four = $array->[0]; # definitely not $array[0]my( $three, $four ) = @array[1,2];my( $five, $six ) = @$array[1,2]; # coerce to array firstmy $length_a = @array;my $length_s = @$array;my $ref_a = \@array;my $ref_s = $array;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;In Perl6 it is written: multi sub f( int $i ){ ... }multi sub f( float $i ){ ... }multi sub f( $i ){ ... } # everything elseI should note that all of these are improved in Perl 6
In Perl6 it is written: multi sub infix:<+> (Us $us, Them $them) | (Them $them, Us $us) { ... }
|
|
|
|
6
|
|
edited Dec 20 '08 at 23:21
|
my $ array = [ 4, 5, 6 ];my $one = $array[0]; # not @array[0] my $four = $array->[0];In Perl6 it is written: my @array = ( 1, 2, 3 );my $array = [ 4, 5, 6 ];my $one = @array[0];my $four = $array[0];In Perl6 it is written: class Dog is Mammal { has $.name = "fido"; has $.tail is rw; has @.legs; has $!brain; method doit ($a, $b, $c) { ... } .../(?<=fixed-regexp)/ <=fixed-regexp)/; # look behind/(?<!fixed-regexp)/ <!fixed-regexp)/; # negative look behind/(?>regexp)/ >regexp)/; # independent sub expression(?:don't capture)/; # non-capturing group(?<name>regexp)/; # named capture/[A-Z]/; # character class# '-' would have to be the first or last element in# the character class to include it in the matchIn Perl6 it is written: / <?before pattern> /; # lookahead/ <?after pattern> /; # lookbehind/ regexp :: pattern /; # backtracking control/ $<name>=[ regexp ] /; # named capture/ [ don't capture ] /; # non-capturing group/ <[A..Z]> /; # character class# you don't generally use '.' in a character class anyway/ [ @<words>=[\w+]\s+ ]* /;sub f( int $i ){ ... } # errsub f( float $i ){ ... } # err
|
|
|
|
5
|
|
edited Dec 10 '08 at 21:58
|
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)/;
/(?=regexp)/; # look ahead
/(?<=fixed-regexp)/ # look behind
/(?!regexp)/; # negative look ahead
/(?<!fixed-regexp)/ # negative look behind
/(?>regexp)/ # independent sub expression
/(?(condition)yes-regexp)/
/(?(condition)yes-regexp|no-regexp)/
Lack of multiple dispatch
sub f( int i ){ ... } # err
sub f( float i ){ ... } # err
sub f($){ ... } # occasionally useful
Poor Operator overloading
package my_object;
use overload
'+' => \&add,
...
;
I should note that all of these are improved in Perl 6.
|
|
|
|
4
|
|
edited Dec 10 '08 at 21:40
|
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
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.
|
|
|
|
3
|
|
|
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
&add,
...
;
I should note that all of these are improved in Perl 6.
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Nov 12 '08 at 1:25
|
|
|
|
|
|
2
|
|
edited Nov 12 '08 at 1:15
|
Perl
Mixed use of sigils
my @array = ( 1, 2, 3 );
my $one = $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 Perl6Perl 6.
|
|
|
|
1
|
|
answered Nov 12 '08 at 1:10
|
Perl
Mixed use of sigils
my @array = ( 1, 2, 3 );
my $one = $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 Perl6.
|
|
|