# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #60936] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60936 >
$ ./perl6 -e 'my $a = "oh hai"; say "{$a.uc} -- KTHXBAI"' # works OH HAI -- KTHXBAI $ ./perl6 -e 'my $a = "oh hai"; say "$a.uc() -- KTHXBAI"' # should output the same oh hai.uc() -- KTHXBAI <http://perlcabal.org/syn/S02.html#line_2660>