This code runs and produces the output abc:
for(10..12){$_=sprintf"%x",$_;print}
But this code dies with a Modification of a read-only value attempted at ... error:
for(10,11,12){$_=sprintf"%x",$_;print}
Why are these constructions treated differently?
(This code also works:)
for(10..10,11..11,12..12){$_=sprintf"%x",$_;print}