$ perl -e'$foo=\"I am immutable"; $$foo="fie!";' Modification of a read-only value attempted at -e line 1. $ #### $ perl -e'*foo=\"I am immutable"; $foo="fie!";' Modification of a read-only value attempted at -e line 1. $