- or download this
*a = \"cons";
$a = "something";
print "$a\n";
__END__
Modification of a read-only value attempted at - line 2.
- or download this
(undef, *a) = \(undef, "cons");
$a = "something";
print "$a\n";
__END__
something
- or download this
(undef, *a) = (\undef, \"cons");
$a = "something";
print "$a\n";
__END__
Modification of a read-only value attempted at - line 2.