blob: 4c441604e71d6fcff499341fc4395477360f0abc (
plain)
1
2
3
4
5
|
# throws
# Modification of a read-only value attempted at -e line 1.
perl -E '$,=","; say map { $_, tr/e/E/ } "Perl Weekly Challenge" x 1'
perl -E 'say for map { $_, tr/e/E/ } "Perl Weekly Challenge" x 1'
|