Albert N. MICHEEV writes: > Ex2: > @_ = map{ > $_ += 1; > }(5,2,7,0,7,7); > > Exception: Modification of a read-only value attempted at 1.pl line 1 Why are you surprised? Did you mean map {$_ + 1} ? Ilya