# New Ticket Created by  jn...@jnthn.net 
# Please include the string:  [perl #61866]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=61866 >


22:58 <@jonathan> rakudo: class Foo { has $.x = 42; }; say Foo.new.x
22:58 < polyglotbot> OUTPUT[42NL]
22:59 <@jonathan> rakudo: class Foo { has $.x = 'default'; }; say Foo.new.x
22:59 < polyglotbot> OUTPUT[defaultNL]
22:59 <@jonathan> rakudo: class Foo { has $.x = 'default'; }; my $x = 
Foo.new;
                  say $x.x
22:59 < polyglotbot> OUTPUT[defaultNL]
22:59 <@jonathan> rakudo: class Foo { has $.x = 'default'; }; my Foo $x 
.= new;
                  say $x.x
22:59 < polyglotbot> OUTPUT[NL]
22:59 <@jonathan> ...odd...
23:00 <@jonathan> Why on earth would that make a difference. :-S

Reply via email to