in reply to New String Concatenation In Perl 6?
You will be able to use .= still, but it'll not do string concatenation--it's the shorthand for method call and assign. So this:
is the same as:$foo .= bar;
$foo = $foo.bar;
At the moment there's not really a 5->6 translation document, but I expect there'll be one built before perl 6 comes out.
|
|---|