$_ = 'a'; $_++ and say; # => 'b' $_++ and say; # => 'c' $_ = 'a'; $_++ and say for 1..2; # => '2', '3' $_ = 'a'; $_++ and say for 1; # => Modification of a read-only value attempted