[perl #61324] [BUG] Some issues with undefined scalar and array values.

2009-01-10 Thread Patrick R. Michaud via RT
Now fixed in r35389: $ ./parrot perl6.pbc > my $x; say $x, 2 Use of uninitialized value 2 > my $x = undef; say $x, 2; Use of uninitialized value 2 > my @a; @a[2] = 'b'; say @a; Use of uninitialized value Use of uninitialized value b > my @a; @a[2] = 'b'; say @a.perl; [undef, undef, "b"] > We prob

[perl #61324] [BUG] Some issues with undefined scalar and array values.

2008-12-14 Thread via RT
# New Ticket Created by Ron Schmidt # Please include the string: [perl #61324] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=61324 > As discussed on IRC today 12/11: my $x; say $x, 2; Outputs: 2\n my $x = undef; say $x, 2