Re: $i := 1;

2002-04-05 Thread Damian Conway
> At a recent talk, Larry showed a line of code that was something like: > >(@a; @b; @c) := (@x; @y; 1,2,3); > > I'm curious about the mapping of @c to a list of constants; if I write > >@c[0]++; > > am I bumping the value of 1? No. We've learnt that lesson, at least :-) My understan

$i := 1;

2002-04-05 Thread Rich Morin
used literal pools. I _assume_ Perl6 won't have such a problem, but I'd like to hear how it works out... -r P.S. The Fortran code was something like: PROGRAM FOO CALL BAR(1) I = 1 PRINT I STOP END SUBROUTINE BAR(J) J = 2 RETURN END -- email: [EMAIL PROTEC