Patrick R. Michaud wrote:
> On Fri, Oct 03, 2008 at 10:02:56AM +0200, [EMAIL PROTECTED] wrote:
>> +#?rakudo skip ',='
>> +#?DOES 2
>> +{
>> +my @a = 1, 2;
>> +is (@a ,= 3, 4).join('|'), '1|2|3|4', ',= on lists works the same as
>> push (return value)'
>> +is @a.join('|'), '1|2|3|4',
NotFound wrote:
But if you talk about perl6, this is not applicable, the perl6
function can have any wanted signature, it will never call the
function directly, it emits the opcode that will call it and can
insert any check or change of his argument. If the sub implementation
allows accidental si